java - Regex Junit Test -
I am working on a Junich test which is going to examine the number of incidents of words that are not included in vowels (AEOU)). string matchstrings = "^ [. [^ Aioioo]] * $";
Is that correct? Thank you.
regex to match all the vowels that do not include your notes: string matchstrings = "\\ b [^ \\ saeioAEIO] + \\ b";
Comments
Post a Comment