Created
September 16, 2010 19:53
-
-
Save carbolymer/583052 to your computer and use it in GitHub Desktop.
This file contains 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
php > preg_match_all("#(\w+)#",'zażółć gęślą jaźń',$a); var_dump($a); | |
array(2) { | |
[0]=> | |
array(4) { | |
[0]=> | |
string(2) "za" | |
[1]=> | |
string(1) "g" | |
[2]=> | |
string(1) "l" | |
[3]=> | |
string(2) "ja" | |
} | |
[1]=> | |
array(4) { | |
[0]=> | |
string(2) "za" | |
[1]=> | |
string(1) "g" | |
[2]=> | |
string(1) "l" | |
[3]=> | |
string(2) "ja" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment