Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Calculator

0

59
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

7 months 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

7 months 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 job Plans Our process Sales
Legal
Terms and conditions Privacy policy
© 2023 PeakU Inc. All Rights Reserved.