Log in

View Full Version : find and remove text from string


harmor19
10-10-2006, 08:42 AM
I have a textarea where the admin can enter a string.
If the admin types "[7]" into the text area I'd like to use a code to remove the brackets so the result would be "7".
I could do a simple str_replace if I knew the value was going to be "[7]" but there's no guarantee it will be.

nico_swd
10-10-2006, 10:24 AM
Try preg_replace() instead.

$str = preg_replace('/\[(.*?)\]/', '$1', $str);

harmor19
10-10-2006, 10:28 AM
I have to leave soon so I'll try it later today.

harmor19
10-12-2006, 12:19 AM
Thanks, it works.