在
NSString的Apple文档中有一个stringByReplacingCharactersInRange
方法,但是我在Monotouch中找不到这个
方法.
Monotouch是否缺少此方法实现 – 本机API绑定?
我需要这个方法在shouldChangeCharactersInRange中实现一些自定义字符串处理逻辑
这里有一些
代码可以满足您的需求:
string text = field.Text;
string result;
result = text.Substring (0,range.Location) + replacement + text.Substring (range.Location + range.Length);
原文链接:https://www.f2er.com/iOS/332549.html