javascript - Regex - Match whole string -
what regular expression (in javascript if matters) match if text exact match? is, there should no characters @ other end of string.
for example, if i'm trying match abc
, 1abc1
, 1abc
, , abc1
not match.
use start , end delimiters: ^abc$
Comments
Post a Comment