How can I leave only words in uppercase, digits, special characters, or words where the first letter in uppercase, but it contains no more than 3 characters, with preg_replace.

For example:

Portocjnk Karaer HDS-C 7/11, 9/15, 8/15-E => HDS-C 7/11, 9/15, 8/15-E

Karcher Karcher B 140 R Bp => B 140 R Bp

Karcher Karcher B 140 R Bsp Trr => B 140 R Bsp Trr

Tatata Tatat Yard-Man YM 84 M-W 31AY97KV643 => YM 84 M-W 31AY97KV643

(Tatata) (Tatat) Yard-Man YM 84 M-W 31AY97KV643 => YM 84 M-W 31AY97KV643

Thanks in advance.

link|improve this question
How can you tell that the 'B' in 'Karcher B' is part of the "must be kept" and not simply someone's initial? – Marc B Feb 28 '11 at 1:48
If it is not followed by lowercase, I guess. – DreifGenov Feb 28 '11 at 1:50
I think this is a complicated enough problem that you should parse it yourself rather than farming it out to the preg_* functions. If you do end up doing this, you want preg_match_all, not preg_replace. preg_replace takes a given regular expression and removes what's matched. You're starting out with what you want matched. Therefore you should use match rather than replace. – Billy ONeal Feb 28 '11 at 1:53
1  
Can you be more specific about what you mean by "special characters"? – Billy ONeal Feb 28 '11 at 1:56
1  
What didn't work with yesterdays answer? stackoverflow.com/questions/5133133/… – mario Feb 28 '11 at 2:02
show 4 more comments
feedback

2 Answers

up vote 1 down vote accepted
preg_replace('|\b([A-Z][a-z][a-z][a-z][a-z\-]*)\b|','',$text);

this one would work with most of your example

link|improve this answer
Thanks! It worked for me with some adjustments. – DreifGenov Feb 28 '11 at 6:41
feedback

This would be a simplistic whitelist approach. Instead of preg_replacing this will first extract the desired parts. And afterwards the $result array needs to be remerged.

preg_match_all('#\b[A-Z\d][A-Z\d/,-]*\b|\b(?<!-)[A-Z][a-z]{1,2}\b#', $str, $result);
$result = implode(" ", $result[0]);

You might need to add some more of the "special" characters in the second [...] character class.

Check out Is there anything like RegexBuddy in the open source world? for some nice tools that might help in designing regular expression.

link|improve this answer
Thanks! This works, but it removes " from the string. Tralala kulala "MTD" E740 F => MTD E740 F, but it should be Tralala kulala "MTD" E740 F => "MTD" E740 F. – DreifGenov Feb 28 '11 at 6:55
feedback

Your Answer

 
or
required, but never shown

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