We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Matching Specific String
Matching Specific String
Sort by
recency
|
67 Discussions
|
Please Login in order to post a comment
\w{3}\W\w{10}\W\w{3}
Java 15:
java solution
This got me confused, I thought what the task wants is to search characters between the "." in example URL. so I used this regex "(?<=.).(?=.)" however it seems it only requires to search for "hackerrank" string only. My reading comprehension is too rusty.