I have a string like this
String s = "<a title="1.jpg" href="http://example.org/dynamictitle/0001.jpg" othercodeothercode> othercodeothercode <a title="2.jpg" href="http://example.org/dynamictitle/0002.jpg" othercodeothercode> ... ... ...";
with dynamictitle a string that change everytime i change the URL
and I want to split this string to have the single URL like
http://example.org/dinamictitle/0001.jpg
http://example.org/dinamictitle/0002.jpg
...
I tried with contains but I can't think how can I solve the problem of dynamictitle
Thanks a lot