Space UITextField 中的字符之间
Space between characters in UITextField
如何在字符之间添加 space? (百,千,百万)
例如
550
5 500
55 500
555 500
5 555 000 etc.
我做到了
@IBAction func textEditingChanged(_ sender: UITextField) {
if sender.text!.count > 0 && sender.text!.count % 4 == 0 && sender.text!.last! != " " {
sender.text!.insert(" ", at:sender.text!.index(sender.text!.startIndex, offsetBy: sender.text!.count-3) )
}
}
但无法正常工作
5 000
5 00000
然后用新的 spaces
删除
5 000...0
有多种方法可以完成您想要的。您可以使用 NumberFormatter 或手动插入 spaces。首先从您的文本字段中删除所有非数字字符,然后格式化或插入一个 space,其中除第一个和最后一个位置外的每个第 3 个数字:
@IBAction func textEditingChanged(_ sender: UITextField) {
sender.text!.removeAll { !("0"..."9" ~= [=10=]) }
let text = sender.text!
for index in text.indices.reversed() {
if text.distance(from: text.endIndex, to: index).isMultiple(of: 3) &&
index != text.startIndex &&
index != text.endIndex {
sender.text!.insert(" ", at: index)
}
}
print(sender.text!)
}
游乐场测试:
let tf = UITextField()
["","5","55","550","5500","55500","555500","5555000"].forEach { text in
tf.text = text
textEditingChanged(tf)
}
这将打印:
5
55
550
5 500
55 500
555 500
5 555 000
如何在字符之间添加 space? (百,千,百万) 例如
550
5 500
55 500
555 500
5 555 000 etc.
我做到了
@IBAction func textEditingChanged(_ sender: UITextField) {
if sender.text!.count > 0 && sender.text!.count % 4 == 0 && sender.text!.last! != " " {
sender.text!.insert(" ", at:sender.text!.index(sender.text!.startIndex, offsetBy: sender.text!.count-3) )
}
}
但无法正常工作
5 000
5 00000
然后用新的 spaces
删除5 000...0
有多种方法可以完成您想要的。您可以使用 NumberFormatter 或手动插入 spaces。首先从您的文本字段中删除所有非数字字符,然后格式化或插入一个 space,其中除第一个和最后一个位置外的每个第 3 个数字:
@IBAction func textEditingChanged(_ sender: UITextField) {
sender.text!.removeAll { !("0"..."9" ~= [=10=]) }
let text = sender.text!
for index in text.indices.reversed() {
if text.distance(from: text.endIndex, to: index).isMultiple(of: 3) &&
index != text.startIndex &&
index != text.endIndex {
sender.text!.insert(" ", at: index)
}
}
print(sender.text!)
}
游乐场测试:
let tf = UITextField()
["","5","55","550","5500","55500","555500","5555000"].forEach { text in
tf.text = text
textEditingChanged(tf)
}
这将打印:
5
55
550
5 500
55 500
555 500
5 555 000