I am trying to convert an string into array by preg_split function. I want to get an array with 1 letter and optional number. For xample, if i have "NH2O3", i want the this output:
[0] => N,
[1] => H2,
[2] => O3
I have this code:
$formula = "NH2O3";
$pattern = '/[a-Z]{1}[0-9]?/';
$formula = preg_split($pattern, $formula);
But this retrieve an error:
Warning: preg_split() [function.preg-split]: Compilation failed: range out of order in character class at offset 3 in /home/masqueci/public_html/wp-content/themes/Flatnews/functions.php on line 865 bool(false)
[a-Z]
doesn't mean anything, if you want uppercase and lowercase letters, two solutions:or
Inside a character class
-
is used to define a range of characters in the unicode table. SinceZ
is beforea
in the table, the range doesn't exist.Note: using
[A-z]
is false too, because there are other characters than letters betweenZ
anda
A pattern to do that:
where
(?=..)
is a lookahead and means "followed by"And 1 is a shortcut for PREG_SPLIT_NO_EMPTY