Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change insert by regex to match the whole variable instead of just a …
…substring The regex is automatically extended with ^ and $ in order to anchor it to the start and the end of the variable name. Previously, a regex of just "bar" would match "foo_bar_baz", now ".*bar.*" is needed for the same match.
- Loading branch information