2
我試圖從我的應用程序進行調用,但似乎我不能,因爲數字是在印度格式(例如:966595848882),並使其工作,我必須將此字符串轉換爲阿拉伯文格式(例如: 966595848882)如何將印度數字轉換成阿拉伯數字?
我的代碼:
NSString *cleanedString = [[ContactInfo componentsSeparatedByCharactersInSet:[[NSCharacterSet characterSetWithCharactersInString:@"-+()"] invertedSet]] componentsJoinedByString:@""];
NSString *phoneNumber = [@"telprompt://" stringByAppendingString:cleanedString];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
它的工作,謝謝。但是從開頭刪除零是否有我能做的事情?(請**注意**:有時數字以零開始,有時以九或八開頭,EX:920000001) – AsimNet
請參閱我的零填充更新。 –
我不會說這種語言,但我覺得這個方法很有趣。 +1。 – Unheilig