- March 10, 2006
- 4,434
- 1,897
- Moderator
- #691
@badboyxx, lol, I just realized that MovPic does a conversion step that must take place before it processes the noise filter, and that is replace all (dots) to (spaces).
So adjust \. for \s
Filter out any optional spaces = \s*
At least one space, but include more = \s+
Specifically capture a number of spaces (two in the example) = \s{2}
Capture a range of spaces from 2 to 7 = \s{2,7}
So adjust \. for \s
Filter out any optional spaces = \s*
At least one space, but include more = \s+
Specifically capture a number of spaces (two in the example) = \s{2}
Capture a range of spaces from 2 to 7 = \s{2,7}