Hi,
I am new to Regex function. Could you please help me to parse all the words that's start with '$'?
Ex-
11:36 Drops: $LAIX -6.4%, $SNMP -4.1%, $SOS -4.0%, $TRIT -3.8%, $SAVA -3.7%, $ALT -3.5%, $ASTC -3.5%
Need Output-
$LAIX , $SNMP , $SOS , $TRIT , $SAVA , $ALT, $ASTC
Any help would be appreciated.
Thanks
Solved! Go to Solution.
Hi @eelundgren ,
You can use a regex tool and set it to tokenize on
\$\u+
that will return every instance of a dollar sign, followed by one or more uppercase characters.
Let me know if that works for you.
Regards,
Angelos