I have the string "abc.aspx?sdfsdfds;eter;yid=10". I want my regex to match the 10
part of that string.
I wrote the regex (abc.aspx?*[?;]yid=), but it is not matching my string. The regex abc.aspx?yid=10;sdfsdf matches my string, and I used this instead of *.
Why does the first regex with * not match, but the second one without it does?
I also want ['test'?%] in this clause. i.e before yid i want only ?,%,Test. for single character it works i.e $% but it is working for Test I tried this (abc.aspx.*['Test'?%]yid=) but it consider ' as character rather i want to match whole Test word.