I have contacts in single vcf file as
BEGIN:VCARD
VERSION:3.0
FN:XYZ
N:XYZ;;;;
TEL;TYPE=CELL:0123456789
END:VCARD
I used vcard splitter to split them into vcf files with single contact so that I can add them on my s60 nokia phone.
Since the FN
and N
values are same for many contacts, the name is repeated twice on the contact list. So I want to write a regular expression for removing FN:
values for each VCARD
. Can someone give me the regular expression for that.