This is the (non-escaped) regex i'm using so far
\{<<"(\w+)">>, \[(<<"(\w+)">>,?)+\]\}.
To match this:
{<<"user_1">>, [<<"user_2">>,<<"user_3">>,<<"user_04">>]}.
And these are the groups I'm getting:
1: user_1
2: <<"user_04">>
3: user_04
Any thoughts on why it isn't giving the multiple users?
If you were wondering the file format is erlang based.