Home > Web Front-end > JS Tutorial > How to Extract Strings Enclosed by Parentheses in JavaScript Using Regular Expressions?

How to Extract Strings Enclosed by Parentheses in JavaScript Using Regular Expressions?

Linda Hamilton
Release: 2024-11-11 07:56:02
Original
886 people have browsed it

How to Extract Strings Enclosed by Parentheses in JavaScript Using Regular Expressions?

Regular Expression for Extracting Strings Enclosed by Parentheses in JavaScript

Retrieving substrings enclosed by parentheses is a useful operation in many programming scenarios. In JavaScript, regular expressions provide a powerful tool for accomplishing this task. This article explains how to construct a regular expression that effectively captures strings between parentheses.

To extract the characters between parentheses, follow these steps:

  1. Escape Parentheses: Since parentheses have special meaning in regular expressions, you need to escape them using the backslash character () to match them literally.
  2. Create Capture Group: Use regular parentheses to create a capture group that encapsulates the text between the parentheses.
var regExp = /\(([^)]+)\)/;
Copy after login

In this regular expression, the escaped parentheses (( and )) match the literal opening and closing parentheses, respectively. The capture group (1 ) matches any non-right parenthesis character (.) one or more times ( ).

Sample Input:

"I expect five hundred dollars (0)."
Copy after login

Example Usage:

var matches = regExp.exec("I expect five hundred dollars (0).");
console.log(matches[1]); // Output: 0
Copy after login

The matches[1] value contains the captured string between the parentheses, which is "$500" in this example.


  1. )

The above is the detailed content of How to Extract Strings Enclosed by Parentheses in JavaScript Using Regular Expressions?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template