舉個例子
信用卡輸入後,UI有可能會是這樣顯示
1 | 0000-0000-0000-0000 |
假設這個應用的UI不是設定四個TextField
那這時,就有必要在指定的範圍內加入指定字串
extension
1 | extension StringProtocol where Self: RangeReplaceableCollection { |
使用
1 | var creditcard: String = "1111222233334444" |
信用卡輸入後,UI有可能會是這樣顯示
1 | 0000-0000-0000-0000 |
假設這個應用的UI不是設定四個TextField
那這時,就有必要在指定的範圍內加入指定字串
1 | extension StringProtocol where Self: RangeReplaceableCollection { |
1 | var creditcard: String = "1111222233334444" |