I'm writing a PHP script and I'm at this point where I need to know if a string consists of one character that's just repeated. The character is even a specific one: it's z.

For example, I want to match "z", "zzz" or "zzzzzzzzz" but not "zaz" or "aaa".

This is probably a simple regex question, but I have no idea how to do this. Anyone?

link|improve this question
6  
You really have no idea at all? – Gumbo Nov 23 '10 at 18:05
Gumbo: I got as far as [z]+ but that seems to match any string with more than one consecutive z in it. – alfonso Nov 23 '10 at 18:07
But it’s a good point to start from. You could have asked a more specific question based on that like “[z]+ matches any string that just contains one or more z; how to match a string that consists of z only?” – Gumbo Nov 23 '10 at 18:13
5  
This question is making me sleepy… – Mathias Bynens Nov 23 '10 at 18:39
feedback

5 Answers

up vote 2 down vote accepted

Match it with ^z*$ : begin (^), any amount of z's (z*), end ($)

link|improve this answer
3  
Should be +, not *. – cdhowie Nov 23 '10 at 18:06
2  
Depends on the result you want for an empty string. – Joost Nov 23 '10 at 18:07
4  
It should be ^zz+$ since for it to be repeated it must happen >=2 times. – Kendall Hopkins Nov 23 '10 at 18:08
Sorry, I should've clarified: one "z" should match too. (edited the post to clarify) – alfonso Nov 23 '10 at 18:19
feedback

^zz+$

..... la la 15 characters

link|improve this answer
sometimes the character limit goes against brevity. – Keng Nov 23 '10 at 18:14
@PP: That’s ok, z can match too. I just want all strings that consists of only z, so including z itself. – alfonso Nov 23 '10 at 18:17
feedback

If regex scares you - you can use a function like Harmen proposed or something like:

$string = 'zzzzzzzzz';
$check = str_repeat('z', strlen($string));
var_dump($check == $string); // dumps bool(true)

$string = 'zzzzAAAzzz';
$check = str_repeat('z', strlen($string));
var_dump($check == $string); // dumps bool(false)
link|improve this answer
2  
Even easier: str_replace('z', '', $string) == '' – Joost Nov 23 '10 at 18:13
Thanks Mikhail and JoostK. I especially like JoostK's solution :) – alfonso Nov 23 '10 at 18:17
1  
Sneaky joostK :) Then we can shrink it even further to !str_replace('z','',$string) – Mikhail Nov 23 '10 at 18:19
1  
Noted and updated. Just noticed another solution: substr_count($string', 'z') == strlen($string) – Mikhail Nov 23 '10 at 18:31
2  
And I just figured why I don't like it. Imagine a string as 'zzzz0z', would become '0' en then !'0' === TRUE. Always be careful with loose comparisons. – Joost Nov 23 '10 at 18:33
show 1 more comment
feedback

No regex needed. Harness the power of PHP's arrays:

count(array_unique(str_split($string)))==1
link|improve this answer
aren't arrays more processor intensive than a regex search? – Keng Nov 23 '10 at 18:46
@Keng: Even if it were slower and if we're not talking about 10,000 iterations, the difference will be insignificant – stillstanding Nov 23 '10 at 18:55
Good to know. thanks – Keng Nov 23 '10 at 19:13
feedback

You could create a custom function like this:

function oneLetter($str){

  for($i=1; $i < strlen($str); $i++){
    if($str[i] != $str[i-1]) return false;
  }

  return true;

}
link|improve this answer
Damn. I didn't even notice it was about one specific character... – Harmen Nov 23 '10 at 18:08
I thought about that too, but it didn’t seem like a very good solution… – alfonso Nov 23 '10 at 18:15
2  
Even for the harder problem, /^(.)\1*$/ or /^(?:(.)\1*)?$/ would work fine. – aschepler Nov 23 '10 at 18:19
feedback

Your Answer

 
or
required, but never shown

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