私はこの単純な問題であまりにも多くの問題を抱えています.文字列を2文字の値の配列に分割します.
$string = 'abcdefgh';
// With the correct regex, should return ['ab','cd','ef','gh'];
$array = preg_split("/?????/",$string);
いまいましい正規表現は何ですか?
私はこの単純な問題であまりにも多くの問題を抱えています.文字列を2文字の値の配列に分割します.
$string = 'abcdefgh';
// With the correct regex, should return ['ab','cd','ef','gh'];
$array = preg_split("/?????/",$string);
いまいましい正規表現は何ですか?
str_split()
代わりに使用してください。
$chunks = str_split($string, 2);
ヒント: 文字を ON に分割すると、空白の 4 つの要素の配列になります。
例えば。
/../i
おそらく preg_split はあなたが望むものではないと思いますpreg_match_all
か?例えば。
$cnt = preg_match_all('/../i', $string, $matches);