Jan 20, 2012 #1 thegame8311 Technical User Joined Jan 6, 2012 Messages 133 Location US is it possible to use a variable as part of a regular expression Code: Lc = 1 re1.Pattern = "Lc[a-z]"
is it possible to use a variable as part of a regular expression Code: Lc = 1 re1.Pattern = "Lc[a-z]"
Jan 20, 2012 #2 scottscott Programmer Joined Dec 14, 2006 Messages 29 Location US rel.Pattern = Lc & "[a-z]" are a and z variables Upvote 0 Downvote