Log in

View Full Version : ereg_replace question


Kirk Y
03-17-2007, 01:37 AM
I'm in need of some quick ereg_replace help. I'm trying to strip specific characters from a string, namely an asterisk and the whitespace immediately following/preceding it.

Typical string: * Forum *
I want: Forum

This is what I've got thus far:
$forum[title_clean] = ereg_replace("[^A-Za-z0-9]", "", $forum[title_clean]);

Dismounted
03-17-2007, 02:45 AM
Use preg and not ereg, preg is much faster.
$forum[title_clean] = preg_replace('/^(\*)(.*)(\*)$/i', '', $forum[title_clean]);
$forum[title_clean] = trim($forum[title_clean]);

Kirk Y
03-17-2007, 03:12 AM
Thanks for the assist, but now it seems that it killed the script, lol. It should be displaying all forums - but it's only displaying one; although that one forum does have its asterisks stripped. :p

Dismounted
03-17-2007, 03:18 AM
What's contained in the string '$forum[title_clean]'?

Kirk Y
03-17-2007, 03:24 AM
The cleaned (done by vB default) title of each forum that's being output in the archive.

calorie
03-17-2007, 03:30 AM
Try trim to avoid making a regexp for '** * for*um* ** *' type things.

$forum['title_clean'] = trim($forum['title_clean'], '* ');

Kirk Y
03-17-2007, 03:35 AM
Try trim to avoid making a regexp for '** * for*um* ** *' type things.

$forum['title_clean'] = trim($forum['title_clean'], '* ');


Ah, that worked perfect Calorie - thanks! They're called asterisks by the way. :p