Judging whether there is Chinese characters in characters or strings
Public Bool Ischina (String CString)
{
Bool boolvalue = false;
For (int i = 0; i
IF (Convert.TOINT32 (CSTRING.SUBSTRING (I, 1)))
{
BoolValue = false;
}
Else
{
BoolValue = true;
}
}
Return boolvalue;
}