How to find % and )% in sigle command
Hi,
I used the below code to find the percentages (%) and parenthesis ) , in a table, and fix the column width into 10 pts.
But i have an occurrence for both ) and % (parenthesis with %) . How to find these occurrences in a single command. Please suggest anyone.
else if(cont.indexOf("%") !=-1)
{
col.width = "10pt";
allcolwidth += col.width;
}
else if(cont.indexOf(")") !=-1)
{
col.width = "10pt";
allcolwidth += col.width;
Regards,
Velu