I was implementing some wildcard functionality in my application with the Regex class.
If I do something like this:
13.*.*; then it works the way I want. It removes anything beginning with 13.
Now when I try something like:
*.y.*
I get an error "quantifier following nothing" or something like that..
I tried using ^.y.*
I had no such luck.
And I get the same thing if I try
*.*.y
Any ideas to try?
Regards
If I do something like this:
13.*.*; then it works the way I want. It removes anything beginning with 13.
Now when I try something like:
*.y.*
I get an error "quantifier following nothing" or something like that..
I tried using ^.y.*
I had no such luck.
And I get the same thing if I try
*.*.y
Any ideas to try?
Regards