Hello
How to get Last four digit of mobile number in symbian c++?
Hello
How to get Last four digit of mobile number in symbian c++?
Last edited by sonia1986; 2009-11-17 at 10:58.
j2me
You can try this
TDesC8 Util::ExtractDigitsFromPhoneNumber(const TDesC8& phoneNum,TInt num)
{
TPtrC8 lastFourDigitPtr;
lastFourDigitPtr.Set(phoneNum.Left(num));
return lastFourDigitPtr;
}
"Nobody will believe in you unless you believe in yourself."