I’m trying to match a word using regex that has numbers in it, for example: bar12b12 12bar43 44324f b123
and at the same time ignore words that don’t: bar foo bar foo
I’ve been trying to do this for that past hour… no results!!
This is the closest I could get:
[a-zA-Z0-9]+[a-zA-Z]+[0-9]+[a-zA-Z0-9]+
but it doesn’t match correctly ?
This should work…