Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAI understand the solution but have 1 doubt.
When writing the Regular Expression in the Parsing Tool:
(\d+\.?\d*)
what exactly do the + and * do? I ask because the answer DOES NOT change if i were to write it as
(\d*\.?\d*)
But it DOES change if I were to write it as
(\d+\.?\d+)
Appreciate your help!
Here is solution, I was thinking that utilize Reg Tool to parse data and splits into each but was difficult for me to separete each because some record has only single ATM record.