DISLEX
02-22-2009, 10:56 PM
I'm working on a plugin and I'm trying to pull out quotes from a post message ($post[pagetext]). For some reason, it works if there's a quote->img->/img->/quote combination, but if there is any text inside the quote WITH an image, it won't pick it up.
here's my regex: $qc = preg_match_all("/(\)/i", $post[pagetext], $quotematches, PREG_SET_ORDER);
here are some examples of the regex results:
[quote=user]
hey!
hey, how's it going?
In the above, it would detect the quoted message by "user"
https://vborg.vbsupport.ru/
oh cool I'm not color blind
in the above, it still detects the quote
HOWEVER, in the following:
Look at this, if you can't see the '5' you might be colorblind!
https://vborg.vbsupport.ru/
oh cool I'm not color blind
it doesn't detect the quote. I've noticed that it doesn't catch a quote if there's text AND an image inside of the quote. How on earth is that not a match?
here's my regex: $qc = preg_match_all("/(\)/i", $post[pagetext], $quotematches, PREG_SET_ORDER);
here are some examples of the regex results:
[quote=user]
hey!
hey, how's it going?
In the above, it would detect the quoted message by "user"
https://vborg.vbsupport.ru/
oh cool I'm not color blind
in the above, it still detects the quote
HOWEVER, in the following:
Look at this, if you can't see the '5' you might be colorblind!
https://vborg.vbsupport.ru/
oh cool I'm not color blind
it doesn't detect the quote. I've noticed that it doesn't catch a quote if there's text AND an image inside of the quote. How on earth is that not a match?