Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
- September 6, 2011 at 4:01 pm #9625RAMMember
Forgive my ignorance but I am a new EmEditor user. I am trying to figure out how to insert vertical columns. For example, taking a column of dates (100,000s rows) like:
20110905
and separating the Y M and D using tabs, to result in:
2011 09 05
September 6, 2011 at 6:24 pm #9626Yutaka EmuraKeymasterThis is very easy to do with EmEditor.
Please watch the video tutorial :http://www.emeditor.com/modules/tutorials4/index.php?id=3
I hope this will help you.
Thanks!
September 7, 2011 at 6:43 am #9628StefanParticipantRAM wrote:
taking a column of dates (100,000s rows) like:
20110905and separating the Y M and D using tabs, to result in:
2011 09 05Or use an RegEx search&replace like
Find: (d{4})(d{2})(d{2})
Replace with: $1t$2t$3
[X] Use Regular Expressions
BTW: that way you can even reorder the YMD sequence.
- AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.