Skip to content

Instantly share code, notes, and snippets.

@carbolymer
Created September 16, 2010 19:53
Show Gist options
  • Save carbolymer/583052 to your computer and use it in GitHub Desktop.
Save carbolymer/583052 to your computer and use it in GitHub Desktop.
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