Last active
October 26, 2015 15:58
-
-
Save Thomas-A-Reinert/69ef0aa8de18d46a4b94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- An dieser Stelle KÖNNTE eine DTD stehen, wie z.B.: | |
<!DOCTYPE addressbook SYSTEM "addressbook.dtd"> --> | |
<root> | |
<kontakt> | |
<anrede>Herr</anrede> | |
<titel>Professor</titel> | |
<titel>Doktor</titel> | |
<vorname>Otto</vorname> | |
<nachname>Normal</nachname> | |
<strasse>Musterstraße</strasse> | |
<hausnr>4</hausnr> | |
<plz>12345</plz> | |
<stadt>Musterstadt</stadt> | |
<bundesland>NRW</bundesland> | |
<land>Deutschland</land> | |
<telefon typ="mobil"> | |
<telefon-praefix>Mobil:</telefon-praefix> | |
<laendervorwahl>+49</laendervorwahl> | |
<vorwahl>176</vorwahl> | |
<telefonnummer>1234567</telefonnummer> | |
</telefon> | |
<telefon typ="festnetz"> | |
<telefon-praefix>Festnetz:</telefon-praefix> | |
<laendervorwahl>+49</laendervorwahl> | |
<vorwahl>221</vorwahl> | |
<telefonnummer>1234567</telefonnummer> | |
</telefon> | |
<email>[email protected]</email> | |
</kontakt> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Folgender Datensatz soll getagged werden:
Herr Professor Dr. Otto Normal
Musterstraße 4
12345 Musterstadt
NRW - Deutschland
Mobil: +49 176 1234567
Festnetz: +49 221 1234567
[email protected]