Summary of common methods for JavaScript string

Source: Internet
Author: User

String.charat (POS);

The Chartat method returns the character of the POS position in string.

/* * * Returns the character at the parameter position */ var name = "CHENQF"; Name.charat (1);  //

String.Concat (String ...);

Constructs a new string by connecting the string to the argument.

/* * * for connection strings, but not frequently used */ var name = "Chen"; Name.concat (//  Chen_qi_feng

String.IndexOf (searchstring,postion);

Finds a string searchstring, or returns 1 if it finds a position that returns the first matching character.

Optional parameter postion, which you can specify to start a search from a location in string.

var text = "Mississippi"; var // 2  = Text.indexof ("ss", 3);   // 5  = Text.indexof ("ss", 6);   // -1

String.LastIndexOf (searchstring,postion);

Similar to indexOf, except to find it from the end

var text = ' Mississippi '; var // 5  = text.lastindexof (' ss ', 3);   // 2    = text.lastindexof (' ss ', 6);  // 5

After learning regular expressions, go back and record

Summary of common methods for JavaScript string

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.