I would like to be able to extract a number from within a string formatted as follows:
\"<[1085674730]> hello foo1, how are you doing?\"
I\'m a novice wit
Use:
<\[(\d+)\]>
This is tested with ECMAScript regex.
It means:
\[
(
\d
+
)
\]
The overall functionality is to capture one or more digits surrounded by the given characters.