On Sun, Apr 15, 2007 at 03:55:19PM -0600, Google Kreme wrote: > On 15-Apr-2007, at 13:23, Bruce Van Allen wrote: > >On 4/15/07 Google Kreme wrote: > > > >>On 15-Apr-2007, at 10:19, Bruce Van Allen wrote: > >>>>I am trying to find this: $msg .= "Sender's Name: \t > >>>>$_POST[name]\n"; > >> > >>Assuming that is all one line: > >> > >>^\$msg \.= "Sender's Name: +\t\$_POST\[name\]\\n";$ > >> > >>will find it. > >> > >>If it doesn't, make sure you don't have any odd characters in there, > >>like non breaking spaces or a curly apostrophe. > > > >Did you test that? it doesn't work on the OP's string. > > Yes I did, and after removing the oddball characters (which I assumed > where an artifact of the email), it worked just fine.
It looks like you forgot to escape the \ in \t, so you're matching a tab rather than a literal \t. Ronald -- ------------------------------------------------------------------ Have a feature request? Not sure the software's working correctly? If so, please send mail to <[EMAIL PROTECTED]>, not to the list. List FAQ: <http://www.barebones.com/support/lists/bbedit_talk.shtml> List archives: <http://www.listsearch.com/BBEditTalk.lasso> To unsubscribe, send mail to: <[EMAIL PROTECTED]>
