Removed positive lookbehind

This commit is contained in:
Jaroslav Lobačevski
2021-03-17 17:32:10 +02:00
parent 8445ec6c17
commit e3bf308952

View File

@@ -308,7 +308,7 @@ module Actions {
// TODO: This only handles expression strings that refer to contexts.
// It does not handle operators within the expression.
result =
this.getValue().regexpFind("(?<=\\$\\{\\{\\s*)[A-Za-z0-9_\\.\\-]+(?=\\s*\\}\\})", _, _)
this.getValue().regexpFind("[A-Za-z0-9_\\.\\-]+(?=\\s*\\}\\})", _, _)
}
}
}