79721428

Date: 2025-07-31 14:32:07
Score: 2.5
Natty:
Report link

On Regex Library use pattern \+(?:[^+\\]|\\[^+])*\+

and for Teststring

GroupNo+ \+ +Name+ / +Ac

And click test pattern.

Or in PHP:

$pattern = '/\+(?:[^+\\\\]|\\\\[^+])*\+/';

$string = 'GroupNo+ \+ +Name+ / +Ac';

preg_match_all($pattern, $string, $matches);

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Joran