I had a text string as following:
text = "907525191737280e , hjjhkj789jkh 2554nagy289 2 8 2 2 7 5 2 working welcome , a dp83640as25 , dp83867 e2 e25"
I tried using the following regex expression(from:regex for alphanumeric only is not working) to identify the alphanumeric words only.
and changed it as following: ^(?=.*[a-zA-Z])(?=.*[0-9])[a-zA-Z0-9]*
But i didn't get the result that i wanted and I also tried [a-zA-Z0-9]+
but did it also got failed.
Desired output:
907525191737280e hjjhkj789jkh 2554nagy289 dp83640as25 dp83867 e2 e25
I am new to regex and trying to learn it. could you please help what am I missing?