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 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](). 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 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 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
Archived
This topic is now archived and is closed to further replies.