diff --git a/src/Util/Strings.php b/src/Util/Strings.php index 3edc9ba906..681edb1c87 100644 --- a/src/Util/Strings.php +++ b/src/Util/Strings.php @@ -358,17 +358,17 @@ class Strings return '@(?xi) (?]+ # Run of non-space, non-()<> - | # or - \(([^\s()<>]+|(\([^\s()<>]+\)))*\) # balanced parens, up to 2 levels - | # or - [^\s`!()\[\]{};:\'".,<>?«»“”‘’] # not a space or one of these punct chars + (?: # One or more: + [^\s()<>]+ # Run of non-space, non-()<> + | # or + \(([^\s()<>]+|(\([^\s()<>]+\)))*\) # balanced parens, up to 2 levels + | # or + [^\s`!()\[\]{};:\'".,<>?«»“”‘’] # not a space or one of these punct chars )* )@'; }