Let's say I have a file like this :
14-Hello14657
156:Good morning 487
1478456=Good bye 1 2
I would like to extract the first character after the first number of the line (and store it in a variable, one at a time). In this example, it would extract
-
:
=
I guess that I should probably use regular expressions but I am still learning it and I can't find a way to do this.