Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
hello. I need to select the numbers situated in brackets (with the bracket).
I try this, but doesn’t work:
\d+|(|)
I find the solution:
\((\d+)\) Select numbers located in round brackets
\((\d+)\)
\[(\d+)\] Select numbers are in square brackets
\[(\d+)\]