I don't know what I'm doing wrong but I have a problem wit this simple regex which works fine when I test it on rad software regular expression but doesn't work in java
I am trying to get some links that have the following format
now if I apply the following regex
<a href="(/test/.+?/)"> it works
but if i use it in java with the appropriate escaping it doesn't work
<a href=\"(/title/.+?/)\">
I am trying to get the code after the slash(the sigits after the word 'test') which works on rad but when used in jave it works as well but it sort of goes greedy
Bookmarks