paulman888888 Posted November 27, 2008 Share Posted November 27, 2008 Hello my PHP friends; I no how to use str_replace but i can't think of a sollution to this probelm! My string is in this format AAAA|BB|CC and i want to rearange the format to CC|BB|AAAA! Think of it as a date and you want to change the format around. So how would i go about doing this? Note: The letters are place holders for numbers. The Numbers may appear in all C,B and A. << Just incase that makes a problem! Thankyou All in advance! Paul Quote Link to comment https://forums.phpfreaks.com/topic/134492-solved-str_replace-please-help-me/ Share on other sites More sharing options...
JonnoTheDev Posted November 27, 2008 Share Posted November 27, 2008 Explode the string into an array and then rearrange $string = "AAAA|BB|CC"; $parts = explode("|", $string); $newString = $parts[2]."|".$parts[1]."|".$parts[0]; print $newString; Quote Link to comment https://forums.phpfreaks.com/topic/134492-solved-str_replace-please-help-me/#findComment-700295 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.