Hi. I have an operation I need to do quite frequently - replace a blank space at the beginning of a line. I can do this with search for '^ '
(^ + space) & replace with [left blank]. However, I need it to replace only one space; some lines have more than one space, and I need to keep the extra spaces. For example (without the quote marks):
" This line has an unwanted space at the start"
" This line has 5 spaces - 4 are wanted"
after s&r:
"This line has an unwanted space at the start"
" This line has 5 spaces - 4 are wanted"