If you can find something with regex find and replace, use this for the regex.
(space)*B.*
* is a wildcard that means "zero or more of the previous character"
. is a wildcard that means "any character"
That will match both of those cases.
(space)*B.*
* is a wildcard that means "zero or more of the previous character"
. is a wildcard that means "any character"
That will match both of those cases.



Open file in Word, select all, turn into list, turn list off again... Tadaa! All leading spaces are gone.
major crosspost, and I didn't see there was a quotation mark before it... oh well
Comment