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

  • SEARCH
  • Home
  • 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 9311935
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T01:30:11+00:00 2026-06-19T01:30:11+00:00

I would like to extract the text within () brackets. The string looks like

  • 0

I would like to extract the text within () brackets. The string looks like this: It is within the

Some text: 5 (some numbers) + some more numbers
asdfkjhsd: 7 (6578) + 57842
djksbcuejk: 4 (421) + 354

My javascript looks like this:

var fspno = document.getElementsByTagName("td")[142].innerText;
var allfsp = fspno.match();

I want this script to collect all numbers within the brackets in an array. I used

fspno.match(/\((.*?)\)/g);

but it returned with the brackets. I want only the text inside the brackets.
Any help would be appreciated. Thanks.

  • 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-06-19T01:30:13+00:00Added an answer on June 19, 2026 at 1:30 am

    There’s no way in javascript to extract all matches with all groups at once, therefore you either have to use exec in a loop:

    re = /\((.+?)\)/g
    found = []
    while(r = re.exec(fspno))
        found.push(r[1])
    

    or abuse String.replace to collect the matches:

    re = /\((.+?)\)/g
    found = []
    fspno.replace(re, function($0, $1) { found.push($1)})
    

    In your particular case, however, it’s possible to rewrite the expression so that it doesn’t contain groups and can be used with String.match:

    re = /[^()]+(?=\))/g
    found = fspno.match(re)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to extract some text between two points in a string, in
I would like to extract some text contained in HTML tags. For example: <html><body>this
I would like to be able to check a string of text and extract
I would like to extract items from this sample html, more specificly, i would
I have a big text file and I would like to extract only numbers
I have a string, where text='<tr align=right><td>12</td><td>John</td> and I would like to extract the
Let say we've text with more than one url within, so i would like
I would like to extract some text from an html file using Regex. I
I would like to extract portion of a text using a regular expression. So
Hello! I would like to extract all citations from a text. Additionally, the name

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.