Hi Justin, @ 5:20:15 PM on 11/19/2001, Justin French wrote:
JF> Some RegExp help here would be great... how do I strip one (or more) JF> <BR>'s from the END of a string? Are they always at the end of the string? No more anywhere else on the line? $string = str_replace('<BR>','',$string); $string = str_replace('<br>','',$string); Or maybe.. $string = preg_replace('/(<br>)+$/i','',$string); (untested) -- -Brian Clark | PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]