I need to find how many digits there are in Price area after delimeter to compare
I used this code but not working properly because all region dont use same delimeter
Do you have better idea ?
strSalesPrice = conPeek(record,5);
delimeterPosition = strFind(strSalesPrice,",",1,strLen(strSalesPrice));
if (delimeterPosition!=0)
{
afterDelimeter = subStr(strSalesPrice,delimeterPosition+1,strLen(strSalesPrice));
if(strLen(afterDelimeter) > SalesParameters.DfcDigitSize)
{
throw error("Please check the number of digits after the decimal point");
}
}