Hi I have strings like:
** Dealing Flop ** [ As, 4s, 8h ]
** Dealing Turn ** [ 4h ]
** Dealing River ** [ 3s ]
I need know is it flop turn or river and what cards has been dealt. for now I have
new Regex(@"^\*\* Dealing (?<flop>F)|(?<turn>T)|(?<river>R)");
and what i need should be something like
new Regex(@"^\*\* Dealing (?<flop>F)|(?<turn>T)|(?<river>R)*[(?<cards>)]$");
but it does not work. Please help.Thank you.