_OwNeD.YoU_ Posted December 3, 2008 Share Posted December 3, 2008 hi guys, I cant figure out the best way to do this. ULUS-10310 Medal of Honor: Heros 2 [uS] I need break this up into a array. the ULUS-10310 is always the same number of values also always a U and a -, the name of the game is always diffrent and changes, then i have the [uS], its always two letters. thank guys im totally lost Quote Link to comment https://forums.phpfreaks.com/topic/135380-solved-cutting-up-a-query/ Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 <?php $text = 'ULUS-10310 Medal of Honor: Heros 2 [uS]'; if(preg_match('/^([^\s]+)\s+(.+)\s+\[(..)\]$/',$text,$matches)){ list(,$code,$title,$country) = $matches; print "Code: $code<br>Title: $title<br>Country: $country"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/135380-solved-cutting-up-a-query/#findComment-705155 Share on other sites More sharing options...
_OwNeD.YoU_ Posted December 3, 2008 Author Share Posted December 3, 2008 you guys are amazing that was like what five minutes!!!!! Quote Link to comment https://forums.phpfreaks.com/topic/135380-solved-cutting-up-a-query/#findComment-705179 Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 actually...kind of slow....10 minutes and 1 second Quote Link to comment https://forums.phpfreaks.com/topic/135380-solved-cutting-up-a-query/#findComment-705189 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.