Variable string nsmutablestring

Source: Internet
Author: User

Variable string inherits from string

//StitchingNsmutablestring *string= [nsmutablestringstring]; [stringAppendString:@"Today Sunday"]; NSLog (@"%@",string);//Today Sunday//insert (in which position to insert what?) )[stringInsertstring:@"That 's a meow."Atindex:0]; NSLog (@"%@",string);//it's a meow. Today Sunday//DeleteNsrange range = Nsmakerange (4,2); [stringDeletecharactersinrange:range]; NSLog (@"%@",string);//meow, Sunday.
/*given a picture file name, determine whether the string ends with "png", if it is replaced by "JPG", if not, splicing ". jpg". */nsmutablestring*string= [nsmutablestringstring]; //Stitching[stringAppendString:@"Mei Cool Heart"];//decide whether to end with PNGif([stringHassuffix:@"PNG"]) {    //string ends with "PNG" and replaced with "JPG"[stringStringbyreplacingoccurrencesofstring:@"PNG"Withstring:@"jpg"];}Else{    //string not ending with "PNG", splicing ". jpg"[stringAppendString:@". jpg"];} NSLog (@"%@",string);//Meian Center. jpg

Variable string nsmutablestring

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.