Say I have the following string:
BlahBlah........1.000
Whatevah....2.000
Something......6.500
...that is, some text, followed by four or more dots, followed by a number (that may have a dot as a delimiter) followed by a newline (Linux or Windows, I don't know if that's important). It's a part of a larger string.
How do I extract the text and numbers into variables? More precisely an array of value pairs (array of arrays). I just can't get my head around regular expressions yet... :(