User: editor -- 2013-01-05 << 1042 1044 >> |
Hits: 4218 |
Type: Advanced search and replace |
Search all Advanced search and replace examples |
Description: |
How to convert a vcf file with multiple entries into a csv file? |
Input Sample: |
BEGIN:VCARD VERSION:2.1 N:;name1 FN:name1 TEL;WORK;VOICE:0123456789 REV:20100606T103709Z END:VCARD BEGIN:VCARD VERSION:2.1 N:;name2 FN:name2 TEL;WORK;VOICE:0123443210 REV:20100606T103709Z END:VCARD |
Output Sample: |
N, FN, NICKNAME, ORG, TITLE, TEL;WORK;VOICE, TEL;HOME;VOICE, TEL;CELL;VOICE, TEL;PAGER;VOICE, TEL;WORK;FAX, TEL;HOME;FAX, ADR;WORK name1, name1, , , , 012345678, , , ... name2, name2, , , , 0123443210, , , ... ... |
Answer: |
Hint: You need to Download and install "Replace Pioneer" on windows platform to finish following steps. |
1. ctrl-o open vcf file( set settings->encoding to utf8 if necessary) 2. ctrl-h open 'replace' dialogue * set 'search for pattern' to: * set 'replace with pattern' to: * uncheck 'print unmatched unit' option * click 'advanced' tab: * set 'insert begin text' to: * set 'run following for each matched unit' to: 3. click 'replace', done. |
Screenshot 1: Replace_Window |
Screenshot 2: Replace_Advanced_Window |