php won't recognize a carriage return
brianj7675_at_yahoo.com
Date: 03/30/05
- Next message: brianj7675_at_yahoo.com: "Re: php won't recognize a carriage return"
- Previous message: Uncle Pirate: "Re: Store printf value inside variable?"
- Next in thread: brianj7675_at_yahoo.com: "Re: php won't recognize a carriage return"
- Reply: brianj7675_at_yahoo.com: "Re: php won't recognize a carriage return"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 29 Mar 2005 20:18:54 -0800
php 4.3.6
windows xp
i need to read a file and match a regular expressions with this
pattern: "\r\ntitle"
preg_match($title_reg, $line, $resB);
$find_reg="\r\n$resB[0]";
if (ereg($find_reg, $line2))
echo $resb[0];
now if i put this pattern in powergrep 2.3.2 it recognizes it. however
if i try to use this pattern in my php script i get bupkis nada nothing
zero. i've tried putting the carriage return in () and in [] but i get
nothing still. when i print the pattern to my browser i see a space in
front of my title showing me that php is recognizing something but it
does not print the \r\n so i'm pretty sure that is why i'm not getting
a match.now i know these are not printable characters but they are in a
string so they should print to the screen.
So my assumption is that php is erasing or translating /r/n into
something so that it does not match my pattern.
- Next message: brianj7675_at_yahoo.com: "Re: php won't recognize a carriage return"
- Previous message: Uncle Pirate: "Re: Store printf value inside variable?"
- Next in thread: brianj7675_at_yahoo.com: "Re: php won't recognize a carriage return"
- Reply: brianj7675_at_yahoo.com: "Re: php won't recognize a carriage return"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|