- AuthorPosts
- May 11, 2009 at 1:46 pm #7274emuser1Member
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
蒸abiExamples:
工 aaa
苷 aaf
芽 aahMay 11, 2009 at 3:50 pm #7275MariaKParticipantIf each word placed at the beginning of the line, with this expression:
Find: ^.
Replace with: ^.tMay 11, 2009 at 4:35 pm #7276emuser1MemberI 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 abefMay 11, 2009 at 5:12 pm #7277MariaKParticipantHave you activate the ”Use Regular Expressions”-Option within the Replace-Dialog?
May 12, 2009 at 4:29 am #7279emuser1MemberYes. 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
对cfyHope Help. Thanks.
May 12, 2009 at 11:03 am #7280MariaKParticipantOh, yes, sorry; forget my first expression, that’s nonsense. Take this one:
Find: ^.
Replace with: tMay 13, 2009 at 4:22 am #7291emuser1MemberThanks! 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
了不起bnhMay 13, 2009 at 12:43 pm #7294MariaKParticipantTry this one (it’s a very simple construct; be careful):
Find: ^[[:unicode:]]+
Replace with: tMay 14, 2009 at 4:23 am #7295emuser1MemberIt work, very thanks ! You are very greated. Thanks again.
- AuthorPosts
- You must be logged in to reply to this topic.