Hey
I’ve checked the help, searched the FAQ and racked my brains. I have a text file that has a large amount of info I want to extract in a long string.
For example:
DOG,218,16/10/07,CAT,50,16/10/07
I want to extract the value immediately following each animal through individual pins, in this case 218 & 50.
At the moment i’m using DOG,(\d+)CAT(\d+).
This works fine for individually but when joined together in the same node I outputs of 0 on each pin. The only alternative I can find is adding individual nodes for each query but with 100 values this will become unmanagable.
Any ideas and help on how I could tweak my syntax would be gratefully received.
Kenny