Hi I need to get a string inside 2 pair of square brackets in javascript using regular expressions.
here is my string [[12]],23,asd
[[12]],23,asd
So far what I tr
Here is a regex you can use, capture groups to get $1 and $2 which will be 12 and 43 respectively
$1
$2
\[\[(\d+)\]\]\S+\[\[(\d+)\]\]