Jump to content

[SOLVED] URL regex help


doug007

Recommended Posts

Hi Lads,

 

On my url i have this path:

 

index.php?cPath=3_16

 

i am using this code to match "3_16"

$cPath = $HTTP_GET_VARS['cPath'];
	$pattern = "/[1-9_1-9]/";
	if(eregi($pattern, $cPath))
		{
			echo $cPath;
			}

 

but it is not working, what am i missing?

 

cheers

 

dug

 

Link to comment
Share on other sites

Square brackets delineate character classes: a pool of characters from which only one is picked. [1-9_1-9] is equivalent to [1-9_], which will only match 1, 2, 3, 4, 5, 6, 7, 8, 9, or _. You want something along the lines of /\d+_\d+\z/, which requires preg_match. The ereg would be [0-9]+_[0-9]+$.

Link to comment
Share on other sites

You have two choices:

 

1. preg_match('/\d+_\d+\z/'...

2. eregi('[0-9]+_[0-9]+$'...

 

Also, note that I've included 0's, which you may or may not want.

 

is there anything you don know ?

 

Assuming you mean "don't know," yes; there's plenty.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.