Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 619595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:40:21+00:00 2026-05-13T18:40:21+00:00

text = ‘ticket number #1234 and #8976 ‘; r = /#(\d+)/g; var match =

  • 0
text = 'ticket number #1234 and #8976 ';
r = /#(\d+)/g;

var match = r.exec(text);

log(match); // ["#1234", "1234"]

In the above case I would like to capture both 1234 and 8976. How do I do that. Also the sentence can have any number of ‘#’ followed by integers. So the solution should not hard not be hard coded assuming that there will be at max two occurrences.

Update:
Just curious . Checkout the following two cases.

var match = r.exec(text); // ["#1234", "1234"]

var match = text.match(r);  //["#1234", "#8976"]

Why in the second case I am getting # even though I am not capturing it. Looks like string.match does not obey capturing rules.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:40:22+00:00Added an answer on May 13, 2026 at 6:40 pm

    exec it multiple times to get the rest.

    while((match = r.exec(text)))
      log(match);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

text = I fixed bug #1234 and #7895 regex = /#(\d*)/ m = regex.match(text)
text = '#container a.filter(.top).filter(.bottom).filter(.middle)'; regex = /(.*?)\.filter\((.*?)\)/; matches = text.match(regex); log(matches); // matches[1] is
Text : aaaa Pattern : aa then will two match: aa(0,1), aa(2,3) if I
alt text http://home.elka.pw.edu.pl/~pkolodzi/Capture.PNG I have created the IAdder interface with two methods: PassA and
Text data-bind expressions can have only a single property. How would I pluralize some
System.Text.RegularExpressions.Regex(#*#) is this correct..!? my text can be like #abc1234+as00# etc. ie, anything between
I would like to run a str_replace or preg_replace which looks for certain words
text<br> text2<br> text3<br/> br tags may be self closing or not. would it be
Given text like: body = yada yada yada yada yada yada yada yada yada
Text is disappearing from the bottom of a RichEdit control window and I'd like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.