Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9625
    RAM
    Member

    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

    #9626
    Yutaka Emura
    Keymaster

    This 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!

    #9628
    Stefan
    Participant

    RAM wrote:
    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

    Or 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.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.