Home >Web Front-end >JS Tutorial >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:
var regExp = /\(([^)]+)\)/;
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)."
Example Usage:
var matches = regExp.exec("I expect five hundred dollars (0)."); console.log(matches[1]); // Output: 0
The matches[1] value contains the captured string between the parentheses, which is "$500" in this example.
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!