3
I have the following text example:
1.1.1.1.1. Test. Test 1.
1.1.1.1. Testing
1. Testing
I would like to select the 1. of all but until the test. I used the following regex: ([0-9]. ) the problem is that in the first line it selects the 1. in the Teste1. and I would like you to select until you start the first letter. Could you help me with this?
Thank you in advance!
EDIT 1:
Selecting everything in front of the last 1. also helps. These numbers are the levels of a tree and would like to remove only them keeping the rest of the text
Using some programming language or just a text editor?
– rray
I’m using Delphi, but in this case it’s only for text even by the Regex of Delphi
– Matheus Machado
@Matheusmachado rray question is why every regex engine has its peculiarities
– Jefferson Quesado