We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b274107 commit da0b379Copy full SHA for da0b379
jsonpath_ng/ext/string.py
@@ -15,9 +15,9 @@
15
from .. import DatumInContext, This
16
17
18
-SUB = re.compile("sub\(/(.*)/,\s+(.*)\)")
19
-SPLIT = re.compile("split\((.),\s+(\d+),\s+(\d+|-1)\)")
20
-STR = re.compile("str\(\)")
+SUB = re.compile(r"sub\(/(.*)/,\s+(.*)\)")
+SPLIT = re.compile(r"split\((.),\s+(\d+),\s+(\d+|-1)\)")
+STR = re.compile(r"str\(\)")
21
22
23
class DefintionInvalid(Exception):
0 commit comments