Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

156
Views
Regex match the last group with @ character on the first character match

How can i match this string permission grant inspire @you @me @john like this match

Group 1: grant or deny

Group 2: anything character

Group 3: should match start with @ every character in match like @you @me you and this is splitted by splace

This is my try in regex ^permission\s(grant|deny)\s(.*)\s(.*)

this is my fiddle

Note: I'm using javascript, does this need lookbehinds or something else that can look around

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Converting my comment to answer so that solution is easy to find for future visitors.

You may consider this regex:

^permission\s(grant|deny)\s([^@]+)\s(.*)

Last group has this pattern ([^@]+) that matches 1+ of any character that is not a @ so that our match stops at the first @ later.

Updated RegEx Demo

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!