Jump to content

[SOLVED] Cutting up a query


_OwNeD.YoU_

Recommended Posts

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

 

 

Link to comment
https://forums.phpfreaks.com/topic/135380-solved-cutting-up-a-query/
Share on other sites

<?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";
  }
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.