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

Popular posts from this blog

4x4 Matrix in Python -

python - PyInstaller UAC not working in onefile mode -

javascript - Building and updating array objects -