In my document, I have
1 some text 1 and more 2 and more 3 and more 4.
2 some text
3sometext 1 and more 2 and more 3 and more 4.
4some text
I would like to add a space after the 3 and 4 at the start of a line (without modifying 3 and 4 later, and I’d like to do all the numbers in one Find&Replace. 1 and 2 already have a space after them so don’t need another space.
So far, I use ‘regular expressions’ and ^[1-9] but I’m far from understanding how to use this, so I just did ^1’spacebar’ Replace with 1, then find ^1 and replace with 1’spacebar’, and then the same for 2, etc.
I’d like to know how to do this all at once:
FIND: numbers followed immediately by a letter, and REPLACE: add a space after that number
Or, perhaps an alternative method.
(Also, is there a webpage that has a list of advanced commands for Find&Replace? I’ve read the standard one on LibreOffice but it’s limited for advanced things.)