vote up 1 vote down star

How can you match the following words by PHP, either by regex/globbing/...?

Examples

INNO, heppeh, isi, pekkep, dadad, mum

My attempt would be to make a regex which has 3 parts:

  1. 1st match match [a-zA-Z]*
  2. [a-zA-Z]?
  3. rotation of the 1st match // Problem here!

The part 3 is the problem, since I do not know how to rotate the match. This suggests me that regex is not the best solution here, since it is too very inefficient for long words.

flag

4 Answers

vote up 4 vote down check

I think regex are a bad solution. I'd do something with the condition like: ($word == strrev($word)).

link|flag
vote up 0 vote down

i think this regexp can work

  $re = '~([a-z])(.?|(?R))\1~';
link|flag
Doesn't seem to work for me: php -r 'var_dump(preg_match("~([a-z])(.?|(?R))\1~", "racecar"));' – Frank Farmer Oct 29 at 3:49
use single ' quotes around regexp, not double " – stereofrog Oct 29 at 3:59
vote up 1 vote down

In PHP once you get the string you want to check (by regex or split or whatever) you can just:

if ($string == strrev($string)) // it's a palindrome!
link|flag
vote up 3 vote down

Regexs are not suitable for finding palindromes of an arbitrary length.

However, if you are trying to find all of the palindromes in a large set of text, you could use regex to find a list of things that might be palindromes, and then filter that list to find the words that actually are palindromes.

For example, you can use a regex to find all words such that the first X characters are the reverse of the last X characters (from some small fixed value of X, like 2 or 3), and then run a secondary filter against all the matches to see if the whole word is in fact a palindrome.

link|flag

Your Answer

Get an OpenID
or

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