opel Posted September 26, 2006 Share Posted September 26, 2006 Hi I am new to using PHP but have some experience of using ASP.I want to be able to use PHP to carry out a task similar to ASP's replace function that will look at a string in a variable and replace the first instance it finds of it.for example say my variable string is "t_image.jpg"I would use (replace(<%imagestring&>)value,"t_","",1,1) which would change the string to now just being "image.jpg"Is there a similiar function to this in PHP that will carry out the same task.Thanks for your help.. ;D Quote Link to comment https://forums.phpfreaks.com/topic/22125-php-version-of-asp-replace-function/ Share on other sites More sharing options...
trq Posted September 26, 2006 Share Posted September 26, 2006 [url=http://php.net/str_replace]str_replace[/url](). Quote Link to comment https://forums.phpfreaks.com/topic/22125-php-version-of-asp-replace-function/#findComment-99039 Share on other sites More sharing options...
.josh Posted September 26, 2006 Share Posted September 26, 2006 str_replace, ereg_replace, substr_replacejust do www.php.net/insertoneofthosehere Quote Link to comment https://forums.phpfreaks.com/topic/22125-php-version-of-asp-replace-function/#findComment-99040 Share on other sites More sharing options...
opel Posted September 26, 2006 Author Share Posted September 26, 2006 cheers got it sorted with the string replace. ;D Quote Link to comment https://forums.phpfreaks.com/topic/22125-php-version-of-asp-replace-function/#findComment-99102 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.