Regular Expression
Matches up to N characters of the string
# Beginning
^.{0,3}
# End
.{0,3}$
http://regexrenamer.sourceforge.net/help/regex_quickref.html
Last updated
Was this helpful?
Matches up to N characters of the string
# Beginning
^.{0,3}
# End
.{0,3}$
http://regexrenamer.sourceforge.net/help/regex_quickref.html
Last updated
Was this helpful?