This content has been marked as final.
Show 2 replies
-
1. Re: I forgot in GREP how to get spaces selected, but only when there are 2 or more, not a single space?
Michael Witherell Nov 22, 2013 7:01 AM (in response to iBabs2)Make it say \s\s+
That would find two or more spaces instead of one or more.
Your positive lookbehinds and positive lookaheads may be unnecessary. They are very generous, at any rate.
-
2. Re: I forgot in GREP how to get spaces selected, but only when there are 2 or more, not a single space?
iBabs2 Nov 22, 2013 7:06 AM (in response to Michael Witherell)Hi Michael,
That did it
..and you are correct, I don't need the positive lookahead and behind...That was my initial attempt to try try and get those extra spaces between the 2 sets of words I want to replace with a tab ultimately...but this solves all of that!!
Thank you so much!!!!!!
Babs


