Hello, @glossar, @terry-r and All,
Some other regexes !
To match any non-empty single-line area, between ( and ) included, not containing any ,, use the regex
\([^(),\r\n]*\)To match any non-empty single-line area, between ( and ) included, containing, at least, one ,, use the regex
(?-s)\([^(),\r\n]*,.+?\)To match any non-empty single-line area, between ( and ) not included, not containing any ,, use the regex
\(\K[^(),\r\n]*(?=\))To match any non-empty single-line area, between ( and ) not included, containing, at least, one ,, use the regex
(?-s)\(\K[^(),\r\n]*,.+?(?=\))Best regards,
guy038