Hello.
Is it possible to specify a variable instead of a string as argument of
string.match().
Example :
myString.match(/abc/i) works but how to do this :
pattern = "abc"
and then
myString.match(???)
to get the same result.
Thanks beforehand.
Mike