powered by
To ensure that a regular expression will match exactly, it's necessary to specify so.
ins_regex_lock(params)
A character vector with locking anchors inserted to force an exact match. For example, "a\\[1\\]" becomes "^a\\[1\\]$".
"a\\[1\\]"
"^a\\[1\\]$"
Node names to paste a ^ and $ (if not already present) to lock in the match.
^
$