Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #7274
    emuser1
    Member

    How can I Separate this following word with ‘Tab’ Key(use regular expressions, see examples) ? Thanks. Thanks for help, I has many data to Separate.

    工aaa
    苷aaf
    芽aah
    苣aan
    荛aat
    荫abe
    蒸abi

    Examples:
    工 aaa
    苷 aaf
    芽 aah

    #7275
    MariaK
    Participant

    If each word placed at the beginning of the line, with this expression:

    Find: ^.
    Replace with: ^.t

    #7276
    emuser1
    Member

    I Try But got the result as bottom. (The word replace to ^. ,original word miss). i used vista, emeditor 8.05. Thanks, hope help.

    ^. aaa aaaa
    ^. aaf aaff
    ^. aah aaht
    ^. aan aanf
    ^. aat aatq
    ^. abe abef

    #7277
    MariaK
    Participant

    Have you activate the ”Use Regular Expressions”-Option within the Replace-Dialog?

    #7279
    emuser1
    Member

    Yes. I already active and used “Regular Expressions” Option within the Replace-Dialog.
    If Can, Use My Examples For Test.

    工aaaa
    其adwu
    东aii
    了bnh
    子bbbb
    也bnhn
    以nywy
    又cccc
    对cfy

    Hope Help. Thanks.

    #7280
    MariaK
    Participant

    Oh, yes, sorry; forget my first expression, that’s nonsense. Take this one:

    Find: ^.
    Replace with: t

    #7291
    emuser1
    Member

    Thanks! It ok now,
    But, I got new problem. how about current not a ‘single word’ (see below examples) ? some word has 2 char(unicode chinese), some word has 3 or 4 char? hope help again. many thanks.

    examples:
    子bbbb
    工人aaaa
    其實adwu
    东南西北aii
    了不起bnh

    #7294
    MariaK
    Participant

    Try this one (it’s a very simple construct; be careful):

    Find: ^[[:unicode:]]+
    Replace with: t

    #7295
    emuser1
    Member

    It work, very thanks ! You are very greated. Thanks again.

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