Help for this page
$users_regexp = qr/^./s; 'abc,v' = /$users_regex(?!,v$)/; # Matches, but it shouldn't. ... $users_regexp = qr/,/; 'abc,v' = /$users_regex(?!,v$)/; # Matches, but it shouldn't.
/^(?=.*?$users_regex)(?!.*?,v$)/s
/^(?!.*,v$).*?$users_regex/s