Armysniper:
dprior:
Ummm....where do I put this in the RegEx??
That *IS* the RegEx. The entire thing.
^ = matches start of string
. = matches any character
* = matches the preceding expression (in this case '.') zero or more times.
$ = matches the end of the string
Actually, you should probably change it to "^.+$" as the first expression would match an empty string, I believe. The plus sign is the same as the * sign, except that it matches 1 or more instead of zero or more.
Please remember to mark any helpful responses as answers.