cIsPhoneIND property
bool
get
cIsPhoneIND
Checks if the string is a 10-digit Indian phone number.
Implementation
bool get cIsPhoneIND {
return (this).length == 10 && (this).cIsDigit;
}
Checks if the string is a 10-digit Indian phone number.
bool get cIsPhoneIND {
return (this).length == 10 && (this).cIsDigit;
}