Skip to content

Commit 5195741

Browse files
committed
Update README.md
Added info about email name parser.
1 parent b604c6b commit 5195741

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,17 @@ echo $personMatchResult->getPersonMatchType()->toString(); //will print 'MATCHIN
137137
```
138138

139139

140+
## Email Name Parser
141+
142+
The Email Name Parser extracts names out of email addresses.
143+
144+
```php
145+
$emailNameParser = $serviceFactory->emailServices()->emailNameParser();
146+
$result = $emailNameParser->parse("[email protected]");
147+
echo $result;
148+
```
149+
150+
140151
## Name Formatter
141152

142153
The Name Formatter displays personal names in the desired form. This includes the order as well as upper and lower case writing.

0 commit comments

Comments
 (0)