Previous | Next | (P-PDF) JavaScript
Topic: Re: Number of Lines In Field
Conf: (P-PDF) JavaScript, Msg: 28591
From: Jub
Date: 10/16/2001 09:24 AM
You might want to consider using a
Regular Expression and the 'test' method.
For example...
reNewLine = /[\r\n]/;
if(reNewLine.test(colField))
{
// do what you need to do...
}
HTH,
Jub