vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   A challenge for regular expressions gurus (https://vborg.vbsupport.ru/showthread.php?t=53795)

amykhar 06-03-2003 03:20 PM

A challenge for regular expressions gurus
 
I need to figure out how to strip a certain style of number from urls. The challenge, I know the format of the number, but the actual number will be different every time. The second challenge? The number can appear in different places in the url.

I need to strip numbers that look like this: 102-5152600-7203338

from urls that look like this: http://www.amazon.com/exec/obidos/tg...125745-6132915

or this:
http://www.amazon.com/exec/obidos/tg...utlet&n=548166

or whatever other crazy format Amazon decides to use.

amykhar 06-03-2003 04:39 PM

I'm making progress. Turns out, I can lop off everything after the pattern of numbers that I am looking for. And, I believe the reg exp that I need to find looks like this:
Code:

/[0-9](3)-[0-9](7)-[0-9](7)
Off to play some more :D

filburt1 06-03-2003 04:42 PM

Dammit, you should have waited longer so I could come to the rescue with my regexp genius! :p

Remember to have the trailing /, too :)

amykhar 06-03-2003 05:18 PM

It's not working yet. Still time for you to be my knight in shining armor.

Arg! I HATE regular expressions!

amykhar 06-03-2003 05:23 PM

Here's the problem, I need to find the pattern, and then preserve everything BEFORE the pattern. I can discard the rest.

I figured this would work:

Code:

list($url,$rest) = split("/[0-9](3)-[0-9](7)-[0-9](7)/",$string);
but, either it's not finding the pattern, or it's not splitting it properly.

Amy

gerlando 06-03-2003 05:44 PM

I'm just learning Regex's myself, but I think you should try and simplify things and make sure its finding the pattern before you try doing anything else to it (like the split).

The error you have in your regex is the parens. they should be curly brakets i.e. [0-9]{3}-[0-9]{7}-[0-9]{7}, other then that it will work, I tested it in javascript since i don't have a php server available. Here's what I used for reference.

var referrer="http://www.amazon.com/exec/obidos/tg/browse/-/548166/102-6125745-6132915";
regex=/[0-9]{3}-[0-9]{7}-[0-9]{7}/i;
var ar = regex.exec(referrer);
Response.write (ar[0]);

amykhar 06-03-2003 05:53 PM

Bless you for finding the error :) That's what comes from having bad eyes and a tutorial with fine print :D

filburt1 06-03-2003 06:02 PM

Hint: anything you need returned in preg_match or preg_match_all should be in parens; for example:
PHP Code:

preg_match("/([A-Za-z0-9]*)stuff([0-9]*)/"$somestring$match);
echo 
"<pre>";
print_r($match); 



All times are GMT. The time now is 01:10 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00988 seconds
  • Memory Usage 1,726KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete