I am currently working with a text file that looks like this.
NUMBER = 6367283940 | FOOD = PASTA | NAME = JOHN WALKER
NUMBER = 6367283940 | FOOD = PASTA | NAME = JOHN WALKER
NUMBER = 6367283940 | FOOD = PASTA | NAME = JOHN WALKER
I would like to extract the number (just the integers) and save them all to a text file that would read:
6367283940
6367283940
6367283940
How would I go about doing this?
I am brand new.