Alaska Software Inc. - IsPunct() Function
Username: Password:
AuthorTopic: IsPunct() Function
Al WimberlyIsPunct() Function
on Tue, 06 Apr 2010 12:41:00 -0400
The string to check below has all punctuation characters except the " - 
double quote character. Anyone have an idea how to add it?

*------------------------------------------------------------*
FUNCTION IsPunct(cChkChr)
*--------------------------------------------------------------------*
return (cChkChr $ "!#$%&'()*+,-./:<=>?@[\]^_`{|}~;")
James Loughner Re: IsPunct() Function
on Tue, 06 Apr 2010 13:49:15 -0400
On 04/06/2010 12:41 PM, Al Wimberly wrote:
> The string to check below has all punctuation characters except the " - 
> double quote character. Anyone have an idea how to add it?
> 
> *------------------------------------------------------------*
> FUNCTION IsPunct(cChkChr)
> *--------------------------------------------------------------------*
> return (cChkChr $ "!#$%&'()*+,-./:<=>?@[\]^_`{|}~;")
> 
> 
> 
> 

return (cChkChr $ "!#$%&'()*+,-./:<=>?@[\]^_`{|}~;"+'"')
Sebastian Arnold Re: IsPunct() Function
on Thu, 08 Apr 2010 20:17:57 +0200
*------------------------------------------------------------*
FUNCTION IsPunct(cChkChr)
*--------------------------------------------------------------------*
return (cChkChr $ "!#$%&'()*+,-./:<=>?@[\]^_`{|}~;" + CHR(34) )


> *------------------------------------------------------------*
> FUNCTION IsPunct(cChkChr)
> *--------------------------------------------------------------------*
> return (cChkChr $ "!#$%&'()*+,-./:<=>?@[\]^_`{|}~;")

HTH
Sebastian