InterviewSolution
Saved Bookmarks
| 1. |
Regex Whitespace Handling |
|
Answer» REGEX Whitespace Handling Here in this regex we will HANDLE the whitesapce to handle this whitespace we will USE " s" to handle this. And if whitespace is more then 1 then we will use "+" after " s" and to hanlde "." single character we will use " .". Now WRITE regex for below 3 and skip the 4th one (9)Excercise :- Handle Whitespace Task Text Match 1. abc Match 2. abc Match 3. abc SKIP 4.abc |
|