Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have the following string

.proxy.com  TRUE    /   FALSE   0   COOKIE%253BCartID%253B%252F%253Bwww.proxy.com   1914104745%253B

and the following regex expression

[a-zA-Z0-9\%]{14,15}

i want to only match 1914104745%253B but it is picking up COOKIE%253BID, i tried to do negative assertion like this

[a-zA-Z0-9\%]{14,15}[?!COOKIE]

but that does not work

can anyone help with this regex expression?

share|improve this question
is that string you want to match have fix lenghth? – slier Jan 3 at 8:42
what do you mean? – user1940354 Jan 3 at 8:43
Do the string you want to catch always start with a number? – Alexander Taver Jan 3 at 8:47

4 Answers

up vote 2 down vote accepted

Why not just anchor to the end of the string with [a-zA-Z0-9%]{14,15}$

$str=".proxy.com  TRUE    /   FALSE   0   COOKIE%253BCartID%253B%252F%253Bwww.proxy.com   1914104745%253B";
preg_match('/[a-zA-Z0-9%]{14,15}$/',$str,$match); 
echo $match[0];

>>> 1914104745%253B

If the part of the string you want to match is strictly formatted you could use something such as \d{10}%\d{3}[A-Z]$ and you can drop the $ if the match won't always be at the end of the string, either way only 1914104745%253B will be matched in your example.

Note: % doesn't needed escaping.

share|improve this answer
how do i keep the the length assertion of this ? {14,15} – user1940354 Jan 3 at 8:45
Not difference as you had it [a-zA-Z0-9%]{14,15}$ just the $ matches the end of the string. – sudo_O Jan 3 at 8:49

Try this

(?<=\s)[\w%]{14,15}(?:(?=\s)|$)

Demo

share|improve this answer
The string aren't fixed length {14,15}. – sudo_O Jan 3 at 8:55
@thx for the info, updated the regex – slier Jan 3 at 9:04

Lookaheads use round brackets, not square ones. But I don't think a look ahead on its own will help here:

(?!COOKIE)[a-zA-Z0-9\%]{14,15}

Would prevent it matching COOKIE%253BCart but then it will simply match OOKIE%253BCartI instead. Anchoring the match at the end of the line using a trailing $ is probably the simplest approach.

share|improve this answer

Are you simply trying to get the last string of non-whitespace characters on the line? Then use this

(\S+)$

You could also use preg_split to split on whitespace and taken the last element of the array it returns.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.