mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
SedRegex: require ending delimiter to prevent overzealous matching of replacement text
Closes #59.
From: 414a4a4a16
This commit is contained in:
parent
656d2172db
commit
dee2b6bdb3
@ -49,7 +49,7 @@ except ImportError:
|
|||||||
# lower than 2.7.6: see https://stackoverflow.com/questions/3675144/regex-error-nothing-to-repeat
|
# lower than 2.7.6: see https://stackoverflow.com/questions/3675144/regex-error-nothing-to-repeat
|
||||||
# and https://bugs.python.org/issue18647
|
# and https://bugs.python.org/issue18647
|
||||||
SED_REGEX = re.compile(r"^(?:(?P<nick>.+?)[:,] )?s(?P<delim>[^\w\s])(?P<pattern>.*?)(?P=delim)"
|
SED_REGEX = re.compile(r"^(?:(?P<nick>.+?)[:,] )?s(?P<delim>[^\w\s])(?P<pattern>.*?)(?P=delim)"
|
||||||
r"(?P<replacement>.*?)(?:(?P=delim)(?P<flags>[a-z]{0,3}))?$")
|
r"(?P<replacement>.*?)(?P=delim)(?P<flags>[a-z]{0,3})?$")
|
||||||
|
|
||||||
# Replace newlines and friends with things like literal "\n" (backslash and "n")
|
# Replace newlines and friends with things like literal "\n" (backslash and "n")
|
||||||
axe_spaces = utils.str.MultipleReplacer({'\n': '\\n', '\t': '\\t', '\r': '\\r'})
|
axe_spaces = utils.str.MultipleReplacer({'\n': '\\n', '\t': '\\t', '\r': '\\r'})
|
||||||
|
Loading…
Reference in New Issue
Block a user