I'm having way too much trouble with this simple problem: split a string into an array of 2-character values, i.e.

$string = 'abcdefgh';

// With the correct regex, should return ['ab','cd','ef','gh'];
$array = preg_split("/?????/",$string);

What's the darn regex?

Edit

OK, will steer clear of regex. But...what would it be?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Use str_split() instead.

$chunks = str_split($string, 2);
link|improve this answer
+1 for beating me and sticking away from Regex! – Jason McCreary May 25 '11 at 2:10
On it again, @alex. Quick and easy. Cheers. – Steve May 25 '11 at 2:10
feedback

Hint: If you split ON the characters, you end up with an array of 4 elements that are blank

eg.

/../i

I don't think the preg_split is what you want, perhaps preg_match_all? eg.

$cnt = preg_match_all('/../i', $string, $matches);

link|improve this answer
Yeah, that's exactly what's happening. Ahh that's very helpful. Thanks! – Steve May 25 '11 at 2:22
1  
Your welcome, with str_split (below) I also commented that you have to be careful of UTF-8 chars as str_split is by byte-length – Jarret Minkler May 25 '11 at 2:25
feedback

/.{1,2}/ perhaps? Accept unlimited two character pairs, accept one character if necessary.

link|improve this answer
Nope, but thanks for the effort (sorry can't give a +1 since it doesn't work). – Steve May 25 '11 at 2:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.