C
Colin Young
I can't figure out what strings would match this:
^[\w][a-zA-Z'-]{1,128}$
Thanks
Colin
^[\w][a-zA-Z'-]{1,128}$
Thanks
Colin
Brian Davis said:^ = beginning of string/line depending on Multiline option
[\w] = a single letter, digit, or underscore character
[a-zA-Z'-]{1,128} = at least 1, but not more than 128 letters,
single-quotes, or dashes
$ = end of string/line depending on Multiline option
Brian Davis
http://www.knowdotnet.com
Colin Young said:I can't figure out what strings would match this:
^[\w][a-zA-Z'-]{1,128}$
Thanks
Colin