w1ww Posted July 22, 2009 Share Posted July 22, 2009 Hey, Imagine that I've a text file like: Name: John Doe Age: 38 Place of Birth: New York How can I, for example, get the age of the guy? Thanks in advance . Quote Link to comment https://forums.phpfreaks.com/topic/166967-finding-specific-text/ Share on other sites More sharing options...
Pioden Posted July 22, 2009 Share Posted July 22, 2009 Learn regular expressions. Read the file into PHP Use regular expressions to search for "Age:" Grab the bit afterwards Close the file Something like that anyway! Regular expressions is your friend - but not fun to learn :'( :'( Quote Link to comment https://forums.phpfreaks.com/topic/166967-finding-specific-text/#findComment-880291 Share on other sites More sharing options...
dzelenika Posted July 22, 2009 Share Posted July 22, 2009 $person = file('filename'); foreach($person as $data) { $arData = explode(':',$data) if($arData[0] == 'Age') { echo $arData[1]; } } Quote Link to comment https://forums.phpfreaks.com/topic/166967-finding-specific-text/#findComment-880296 Share on other sites More sharing options...
MatthewJ Posted July 22, 2009 Share Posted July 22, 2009 $person = file('filename'); foreach($person as $data) { $arData = explode(':',$data) if($arData[0] == 'Age') { echo $arData[1]; } } Since there is a space after the colon, I would explode on " " or trim $arData[1] Quote Link to comment https://forums.phpfreaks.com/topic/166967-finding-specific-text/#findComment-880301 Share on other sites More sharing options...
dzelenika Posted July 22, 2009 Share Posted July 22, 2009 $person = file('filename'); foreach($person as $data) { $arData = explode(':',$data) if($arData[0] == 'Age') { echo $arData[1]; } } Since there is a space after the colon, I would explode on " " or trim $arData[1] Don't use space as delimiter because if you want to know name then and name will bee "exploded". Rather trim if necessary. Quote Link to comment https://forums.phpfreaks.com/topic/166967-finding-specific-text/#findComment-880310 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.