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?
[z]+but that seems to match any string with more than one consecutivezin it. – alfonso Nov 23 '10 at 18:07[z]+matches any string that just contains one or morez; how to match a string that consists ofzonly?” – Gumbo Nov 23 '10 at 18:13