[ic] IC/eBay API integration -> impending donation

Grant listbox at email.com
Sun Sep 14 17:48:23 EDT 2003


*snip*

> I had to change this line:
>
> ###
> next if (($line eq "")||($line eq "\n")||($line eq "\r")||($line
> eq "\s"));
> ###
>
> to this:
>
> ###
> next if (($line eq "")||($line eq "\n")||($line eq "\r"));
> ###
>
> to keep perl -cw from complaining about an unrecognized escape.
>

*snip*

I'm told "\s" is the escape for a single whitespace.  Would something like
this work:

###
($line eq " ")
###

instead of this which perl -cw doesn't like:

###
($line eq "\s")
###

- Grant



More information about the interchange-users mailing list