Jump to content

extract url from a string


freeriders

Recommended Posts

Greetings Folk

 

I'm a php rookie and I have hard time with Reg Ex

 

let say that I have a text named mytext.txt

 

the file has the following content content

 

http://www.vitoriakitecenter.com.br/        to totototo  some texte here www.northcoastkiteboarding.com  http://kitesurfaustralia.com.au o totototo  some texte here www.ruakakakitesports.co.nz o totototo  some texte here <a href="http://www.airbossworld.co.uk" style="color:#000000" target="_blank">www.airbossworld.co.uk</a>

 

I wish to put in an array all the urls (specially if they are NOT within the <a href=" tag )

 

to get the content of my text file in a string I do

 

$toto = file_get_contents('mytext.txt');

 

so no problem to have the string with all the content of mytext.txt

 

I just can't manage to use preg_match_all to be able to extract all possible way something that look like an url

 

so would like the following output

 

Array
(
    [0] => http://www.vitoriakitecenter.com.br
    [1] => www.northcoastkiteboarding.com
    [2] => http://kitesurfaustralia.com.au
    [3] => www.ruakakakitesports.co.nz
    [4] => http://www.airbossworld.co.uk
)

 

I have tried several snipets out there but can't manage to get it work

 

any tips would be much much much appreciated

 

thank you very muchin advance for your help

 

Stefany

Link to comment
https://forums.phpfreaks.com/topic/188787-extract-url-from-a-string/
Share on other sites

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.