Open skauss opened 4 years ago
Hello,
You would need to obtain the street address portion of the address property, and then convert the street address using Java string manipulation.
VCard vcard = Ezvcard.parse(vCardStr).first();
String street = vcard.getAddress().getStreetAddress();
String germanStreet = convertToGermanFormat(street);
vcard.getAddress().setStreetAddress(germanStreet);
It looks for me "Street Number" is country dependent. Germany : "Street Number" US : "Number Street" And I am wondering that I the one who has the problem to rotate "Street Number" on country code ?
You're the first person to bring this to my attention. :)
Hi I am new to vcard. In Germany we use "Street Number" like "Engestrasse 2". On my phone contact on an pixel 3 I enter "Engestrasse 2" but get back "2 Engestrasse". Any idea how to solve this. US address use "323 Street" German address use "Street 123"
I read the contract like this :
Regards