+ 3
Which pattern would NOT match "123!456!"?
why would (\d*\W)+ match?
3 Antworten
+ 4
\d zero or more digit... which is true
\W not a word... which is also true for !
+ one and mpre time which is true.
+ 3
Which pattern would NOT match "123!456!"?
Answer :- (\D+\s?)+
+ 1
The answer is (\D+\s?)+