Reputation: 45
I have 10 txt files with 1000 lines each, and they're all horribly formatted, with uneven space between "columns'. I neeed to put a single space between words (names in this case) so Access can turn each row into a proper column . How can I get Notepad to put a consistent one space between these words instead of the varying spacing as seen here:
Upvotes: 0
Views: 3958
Reputation: 7262
You can use a regex expression to do this.
[ ]+
in the 'Find what' box
(a single space) in the 'Replace with' box.This looks for one or more spaces, and replaces with a single space.
Upvotes: 1