Answer the question
In order to leave comments, you need to log in
How to quickly format a file?
I have a txt file like this:
Answer the question
In order to leave comments, you need to log in
In any text editor that supports regular expression search/replace
Replace ^\s+ with nothing
Replace \s+ with |
For example like this:
let text = `
Slovo1 slovo2 12Slovo 34452gSlovo
Slovo345 Slovo234 slovo234 Slovo6643
`;
console.log(text);
text = text.replace(/\s\s+/g, '|');
console.log(text);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question