Questions tagged [vcf-vcard]

vCard is a file format standard for e-business cards to identify people and organisations.

vCard is a file format standard for e-business cards to identify people and organisations.

They may contain various identification data such as name, address, phone numbers, e-mail addresses, URLs, logos, photographs, audio clips and etc.

705 questions
-1
votes
1 answer

Allows automatic vCard attachment to every email from exchange server

I Have requirement to send vcard on exchange server level by preparing the vcard there itself and attach it in exchange server itself, is there any option available to create vcard file in exchange server. Any suggestions? Please help me.
-1
votes
1 answer

Getting contact details from user in a listView form

I am developing a .vc application. I need to provide a form to the user to fill up fields such as name, number, title, email, website etc. in a listView layout. How i can do it? Appreciate your helps.Thx
Umit Kaya
  • 5,771
  • 3
  • 38
  • 52
-1
votes
1 answer

how to generate vCard All Properties into Regex?

I want to generate regex for vCard Properties. For Ex: VERSION: Regex regex = new Regex(@"(?(VERSION)) (:(?[^\n\r]*))", options); Match m = regex.Match(s); how to write other vcard proparty like…
Tulsi
  • 151
  • 3
  • 15
-2
votes
1 answer

How to get all contacts and export to .vcf file?

I want my application to get all contacts and export them to a .vcf file programmatically in Java. I don't know how to do it, please give me an example.
Abiddarris
  • 11
  • 3
-2
votes
1 answer

vCard Import/Export?

I have an Adobe Air application and I am trying to build a method of importing and exporting vCards. I was wondering if there is a simple way or does anyone know anything that could direct me. Regards,
Steven
  • 13,250
  • 33
  • 95
  • 147
-2
votes
2 answers

FileWriter fw = new FileWriter(vcfFile); crashes on API 18

I have the following code: File vcfFile = new File(this.getExternalFilesDir(null), "generated.vcf"); FileWriter fw = new FileWriter(vcfFile); fw.write("BEGIN:VCARD\r\n"); ... It works fine on newer APIs, but on API 18 it crashes. Caused by:…
-2
votes
2 answers

What is the difference between ^M, $, and \n (newline) in Python?

I´m working with a text file (containing vcards) and need to remove ^M (leaving newlines) at the end of each line except within the NOTES field (since it seems that there the ^M signals the line continues and wraps around). See enclosed figure taken…
-2
votes
1 answer

How do I pass a recieved intent to another app/activity?

I am developing an app which reads NFC tags. If the tag is plain text, it gets displayed in a TextView. If it is a vCard, I want to pass the intent right through to the contacts where it can be handled the same way it would if there was no app in…
-2
votes
1 answer

How should I use the proper charset for my vcard?

i had an issue with my smartphone so i needed to export my adress book check and modify each phone number. I have some contacts with spanish characters (á ñ ü) and when I try to look at my new vcf homemade file Thunderbird doesn't recognices. I've…
Antonio E.
  • 359
  • 1
  • 9
  • 27
-3
votes
2 answers

Sending Business Card to Outlook using C#.Net

I have a specific requirement to send the user contact details as a Business Card to Outlook using C#.Net, it works perfectly and sends the Business Cards to Outlook however facing an issue when user name is in unicode format. Sample-1: - UserName…
One Developer
  • 99
  • 5
  • 43
  • 103
-3
votes
1 answer

How to get Mobile Number from vCard String Objective C

I am working on Action Extension Objective C. I have successfully created Extension for share recent contact in my Extension. In that I am getting v Card String. How can I get Mobile Number from v Card String. Any help would be appreciated.
-3
votes
1 answer

Android Vcard data Read functionalities

How to read the v-card data for ORG filed ? Example : ORG:Bubba Gump Shrimp Co. how to read above field in vcard type in store to string in android.
-4
votes
1 answer

Delete duplicate records in a vCard file

I have a vCard file with records for thousands of contacts. This file has been corrupted and copies of personal phone, work, and extra records have been added for each of the users. How could I clean up…
Ravai
  • 1
  • 1
-4
votes
1 answer

How to import vcf file

i have exported my contact to VCF file on SDCard. Now, i want to import back but i don't know how to do that. Please give me some code or advice. Thank so much.
Tuan Vu
  • 6,397
  • 2
  • 14
  • 22
-8
votes
1 answer

converting phone numbers to vcf format algorithm

From: BOBBY,9238123 LOBBY,2312312 Into: BEGIN:VCARD VERSION:2.1 N:BOBBY;;;; FN:BOBBY TEL;CELL:9238123 END:VCARD BEGIN:VCARD VERSION:2.1 N:LOBBY;;;; FN:LOBBY TEL;CELL:3423423 END:VCARD the bobby repeats twice and phone number once This is what I…
1 2 3
46
47