hello!
can anyone show me how to write this as a REGEX so that the wildcard * character matches an individual word? (a-zA-Z0-9)
So with the example above my I'd want to match "wordtomatch" followed by 3 words.Code:wordtomatch * * *
(trying to emulate google's "fill in the space" with wildcard feature).
thanks