I'm trying to create a list of game names and compare it to a website however the game name aren't always 100% the same text is there a way i can do a partial comparison ?
This is the title on the website
Transformers_Ultimate_Autobots_Edition_EUR_NDS-EXiMiUS
This is the title i have
Transformers_Ultimate_Autobots_Edition_EUR_MULTi5_NDS-EXiMiUS
So they are slightly different.
This is the script im using to compare it too on the website:
//Get Release Number
$pattern_releaseNumber = ('#<b>(.*?)</b> title="'.$mygamename.'">\s*#');
preg_match_all($pattern_releaseNumber,$dsScene,$match_test);
print_r($match_test);
Hope this makes sense.
Thanks