iOS Filters illegal strings

Source: Internet
Author: User

Encountered in the search box to filter illegal characters, the traditional use while loop to operate is too cumbersome, iOS nsstring there are related methods to solve this problem. as follows: Nscharacterset *Donotwant =[Nscharacterset charactersetwithcharactersinstring:@ "[email protected]#$%^&*+?/="]; TempString =[[TempString componentsseparatedbycharactersinset:donotwant]componentsjoinedbystring: @ "];      Note: This method cannot be filtered by stringbytrimmingcharactersinset, it can only filter illegal characters at both ends of the string, but cannot filter out illegal characters contained in the string. Of course, in addition to filtering operations and determine whether there are illegal characters in the string operation, you can do as follows:

Nscharacterset *errorcharstr = [Nscharacterset

charactersetwithcharactersinstring:@ "[Email protected]#$%^&*+?/="];

Nsrange range = (nsrange) {65535,0};

range = [str rangeofcharacterfromset:errorcharstr];

if (Range.length > 0) {

return YES;

}

If the length property of range is greater than 0, the string contains illegal characters.

iOS Filters illegal strings

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.