IndexOf () and LastIndexOf () method search string

Source: Internet
Author: User
Description and function of IndexOf () and LastIndexOf () method

Both the IndexOf () and the LastIndexOf () methods are search strings. Among them, IndexOf () is the previous search, LastIndexOf () is the search from the back forward. Their return value is where the substring began, and this position is counted from 0 onwards. Returns-1 if it is not found. Second, the example

<mce:script language= "JavaScript" > <!--var sStr = "ABcdefghijk1234567890" document.write (Sstr.indexof ("A") + "<br>"); document.write (Sstr.indexof ("9", 7) + "<br>"); document.write (Sstr.lastindexof ("I") + "<br>"); document.write (Sstr.lastindexof ("K", 10+ "<br>"); document.write (Sstr.lastindexof ("V", 2) + "<br>"); document.write (SSTR); --> </mce:script>

Results:

0
19
8
10
-1
ABcdefghijk1234567890

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.