
jamesmiller
Members-
Posts
31 -
Joined
-
Last visited
Never
Everything posted by jamesmiller
-
AyKay47, Thank you worked perfectly
-
Hey guys, im currently writing a crawler to grab all text withing two html tags : <h2 class="posttitle"> <a class="entry-title" title="ANYTHING here" rel="bookmark" href="http://ANYURL">ANYTHING here</a> </h2> and i want to grab all of these so a preg_match_all for everything between <h2 class="posttitle"> and </h2> Thank you for any help
-
Hey guys, i was wondering if there was a way to be able to give PHP a URL and then for PHP to take a screen shot of that URL? Any help would be greatly appreciated Thank you
-
Hey Guys, I am searching through a page and only pulling certian urls from a page i have this regex:- preg_match_all('@\bhttp[s]*?(:|:)//[-A-Z0-9+&#/%?=~_|$!:,.;]+[A-Z0-9+&#/%=~_|$][.*?].@i',$page,$links); this works fine for pulling out the links needed the only problem is it will only pull out the first letter after the "." and i want it to pull out all of the URLS with file extensions on for example i would like it to pull http://website.com/files/402005378/balablah.rar.html and it will only return http://website.com/files/402005378/balablah.ra Thanks for any help
-
My apologies I was meant to put it on the end but forgot thank you for your help
-
hey guys. sorry if this is a simple question and easy to do but i need a regex to pick out Author: anything can be here </h3> from <h3> <span class="author"> Author: </span> <span> <a href="/catalog/list_author_titles?author=John+search=search">John </a> </span> Thank you for any help,
-
regex for matching everything but URL that starts with http.
jamesmiller replied to jamesmiller's topic in Regex Help
Ok sample data wise this is the URL http://www.torrentreactor.net/search.php?search=2&words=Linux&lang= -
regex for matching everything but URL that starts with http.
jamesmiller replied to jamesmiller's topic in Regex Help
my apologies the actual real sample data is <a href="/torrents/798659/Jim-avi"> and i want it to retrieve all the hrefs with /torrents/but i dont want it to reteriev the hrefs with <a href="http://www.fulldls.com/torrents/Jim" target="_blank"> thats the propper sample data, the other post i really tried the regex and it didnt work for me apologies once again -
regex for matching everything but URL that starts with http.
jamesmiller replied to jamesmiller's topic in Regex Help
Yeah it does, thank you that doesnt seem to have worked still retreiving hrefs with http in front of them -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
im really not , i dont understand why t wont work the code i have is $expr = '%/load/(.*?)/(?:[^/"]++)%i'; if( preg_match($expr,$href)) $hrefs[] = $href; // store href } and it wont work -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
Sorry was away for the weekend, no i havent changed it using exactly that expression and still returning all the values :-( . -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
and gg can contain anything -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
Thank you, still returning them all, sorry about this . -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
Ok im not sure why it isnt working either bud, i think the /gg/ can be anything as it changes and so this is the manipulation i have got: $expr = '%/load/(.*?)/(?:[^/"]++)%i'; if( preg_match($expr,$href)) $hrefs[] = $href; // store href } -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
Ok sorry bud, ive tried applying several times before i posted that, its not working because its still picking out /load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481/files/gregr and still outputting that . -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
thank you, but i want the regex to pick out only '/load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481' so i need a regex that excludes the link wuth files/etc on the end ? -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
that works but its still matching false positives i want it to not match anything that is /load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481/files/etc and match everything with /load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481. Thank you -
Regex for grabbing everything but a variable.
jamesmiller replied to jamesmiller's topic in Regex Help
ok the content is <a href="/load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481/files/gregr" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358813f031ffa01ba1164c238696eb8e24079b24481');"> <img name="img4358813f031ffa01ba1164c238696eb8e24079b24481" src="/images/expand.gif" alt="File Listing" border="0"></a> <a href="/load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481" class="BlckUnd"><font color="#CC0000">gg</font> < i want to get one of these which is the /load/gg/4358813f031ffa01ba1164c238696eb8e24079b24481 thank you -
Hey guys, basically i need a regex to reterieve part of a string but exclude strings that end with a certain variable. I was wondering how this could be achieved so far i have: preg_match('!/load/!is',$href) but it retrieves strings that have /load/files/wjnjsnws/ which i dont want i just want the /load/ thank you guys
-
Help with preg_match_all('!/search/(.*)/([0-9])!i', $page, $pages);
jamesmiller replied to jamesmiller's topic in Regex Help
Than you works perfectly , thank you for all your help dan -
Help with preg_match_all('!/search/(.*)/([0-9])!i', $page, $pages);
jamesmiller replied to jamesmiller's topic in Regex Help
here is my code : function page($page) { preg_match_all('!href="/search/(.*)/(d+)!i', $page, $pages); print_r ($pages); Thank you -
Help with preg_match_all('!/search/(.*)/([0-9])!i', $page, $pages);
jamesmiller replied to jamesmiller's topic in Regex Help
My apologies, thank you , Array ( [0] => Array ( [0] => href="/search/reg/2/">2 3 4 5 ... 32 Array ( [0] => reg/2/">2 3 4 5 ... 32< ) [2] => Array ( [0] => d ) ) That was the output -
Help with preg_match_all('!/search/(.*)/([0-9])!i', $page, $pages);
jamesmiller replied to jamesmiller's topic in Regex Help
Ok new problem its outputting: Array ( [0] => Array ( [0] => href="/search/reg/2/">2 3 4 5 ... 32 Array ( [0] => reg/2/">2 3 4 5 ... 32< ) [2] => Array ( [0] => d ) ) The thing is i want /search/reg/number/ to appear in different array places so /search/reg/3/ would be in array value 1 and /search/reg/4/ would be in value 2 -
Help with preg_match_all('!/search/(.*)/([0-9])!i', $page, $pages);
jamesmiller replied to jamesmiller's topic in Regex Help
Dan, Thank you, i have tried putting \d+ in the regex but it didnt work so tried (d+) and worked :-) thank you for the help