removing white spaces at beginning and end of string

前端 未结 8 1067
天涯浪人
天涯浪人 2021-01-14 01:41

I\'ve got a problem with removing whitespaces at the beginning and end of string. For e.g. I\'ve got a string like:

\\r\\n\\t- Someone will come here?\\n- I d

8条回答
  •  粉色の甜心
    2021-01-14 02:24

    In this code to restrict Textfield beginning white space

    func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
            if (textField.text?.count)! == 0 && string == " " {
                return false
            }
            else{
                return true
            }
        }
    

提交回复
热议问题