The use of Objective-c learning-nsstring

Source: Internet
Author: User

0. Determine if there are any characters in the string

if ([Roadtitlelab.text rangeofstring:@ "Qingjoin"].location!=nsnotfound)//Determine if Roadtitlelab.text contains Qingjoin

} else {

NSLog (@ "no");

? }

1. Intercepting strings

nsstring*string [email protected] "SDFSFSFSADFSDF";
string = [strings substringtoindex:7];//after intercept of subscript 7
NSLog (@ "Intercept value:%@", string);
[String substringfromindex:2];//to intercept strings before subscript 2
NSLog (@ "Intercept value:%@", string);


2. Matching strings
nsstring*string [email protected] "SDFSFSFSADFSDF";
Nsrangerange = [stringrangeofstring:@ "F"];//matches the resulting subscript
NSLog (@ "rang:%@", Nsstringfromrange (range));
strings = [string substringwithrange:range];//Intercept range class
NSLog (@ "Intercept value:%@", string);


3. Separating strings
nsstring*string [email protected] "SDFSFSFSADFSDF";

Nsarray *array = [string componentsseparatedbystring:@ "A"]; An array of 2 elements separated from character a
NSLog (@ "array:%@", array); The result is Adfsfsfs and DFSDF.

The use of Objective-c learning-nsstring

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.