我想创建一个
的正则表达式1. Cant be empty
2. First character can only be a-z A-Z _ $
3. The rest of the string can only contain 0-9 a-z A-Z _ $
4. Maximum length of string is 5
我的最大努力是
^[A-Za-z_$][A-Za-z0-9_$]{1,5}$
但是当我的字符串出现时,它并没有正常工作,并且可能存在其他问题。
a
aaaaaa
感谢您的帮助。
答案 0 :(得分:0)
您应该使用:
UICollectionView
假设你想要1-6个字符。
或者:
let selectedItems = followCollectionView.indexPathsForSelectedItems
for (indexPath in selectedItems) {
followCollectionView.deselectItemAtIndexPath(indexPath, animated:true)
if let cell = followCollectionView.cellForItemAtIndexPath(indexPath) as? FollowCell {
cell.checkImg.hidden = true
}
}
如果你想要5。