Questions about Greps and FindChangeByList
I'm willing to write a grep code to find my desired words. I'm looking for the word X that there are one or more kinds of spaces before it, or the word X is at the beginning of a paragraph. So far, I wrote this grep code:
([~|~< ]{1,}X)
The problem is I cannot add the ^ --that indicates the beginning of a paragraph to my grep code.
Since I'm writing a grep code, so I cannot add the WholeWord scope to my search, therefore, I wrote {1,} in my code.
