I got some text that changes dynamically and I need a way to find some parts in it.
Especially like these:
+124now
+78now
+45now
So my values always starts with an “+” plus symbol then some digits, minimum one and then the “now” word.
I tried many ways like this:
if(myString.contains("+[0-9]+now")) //false
but I tired of it… can you help please?
Try this……