denoteone Posted April 8, 2009 Share Posted April 8, 2009 having a hard time getting data out of a string saved in a variable. $fp = "[Querying whois.arin.net] [Reirected to whois.ripe.net:43] [Querying whois.ripe.net]"; I need to create a new variable that only has the string "whois.ripe.net" the second instance of it above. $newfp = getstr($fp, get the data between the 2nd instance of Querying and the 3rd instance of ]); echo $newfp; output whois.ripe.net Link to comment https://forums.phpfreaks.com/topic/153208-string-from-a-string/ Share on other sites More sharing options...
.josh Posted April 8, 2009 Share Posted April 8, 2009 $fp = "[Querying whois.arin.net] [Redirected to whois.ripe.net:43] [Querying whois.ripe.net]"; preg_match_all('~\[Redirected to ([^:]*):~i',$fp,$matches); echo $matches[1][0]; Link to comment https://forums.phpfreaks.com/topic/153208-string-from-a-string/#findComment-804913 Share on other sites More sharing options...
ghostdog74 Posted April 9, 2009 Share Posted April 9, 2009 $fp = "[Querying whois.arin.net] [Redirected to whois.ripe.net:43] [Querying whois.ripe.net]"; $a = preg_split("/Querying/",$fp); print end($a); Link to comment https://forums.phpfreaks.com/topic/153208-string-from-a-string/#findComment-805076 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.