Search found 2 matches

by marbx
Mon Jul 31, 2006 3:57 pm
Forum: General
Topic: Replace spaces with commas
Replies: 2
Views: 773

The problem I see with matching " *" is that it'll match zero or more spaces - so this'll match between every character, because there are "zero or more" spaces between every character. The plus sign means to match one or more characters, so matching against " +" (space followed by plus) would ...
by marbx
Thu Jul 27, 2006 7:26 pm
Forum: General
Topic: 1 File into many
Replies: 4
Views: 759

I don't think there's any kind of search & replace or macro that'll work over multiple files. With Textpad the quickest and easiest I can think of is to copy the original file 25 times. It's probably quicker to use the command line to do this; run: xcopy original.txt p0073.txt Then up arrow ...