JavaScript checks whether the Sub-string is in the string method, javascript string

Source: Internet
Author: User

JavaScript checks whether the Sub-string is in the string method, javascript string

This example describes how to use JavaScript to check whether a substring is in a string. We will share this with you for your reference. The details are as follows:

var strnew="Hello Raghu How are u"//Checking existence in entire stringif(strnew.indexOf("Raghu") != -1 ){  alert("Exists");}/*Checking existence at the end of stringFor example, variable result1 in the following example is assigned the value of true because the word "Ishmael" appears at the end of the string. Variable result2 is assigned a value of false because "Raghu" doesn't appear at the end of the string.*/result1 = /Raghu$/.test("Call me Raghu");result2 = /Raghu$/.test("Call me Raghu. Some years ago");/*Checking existence in the begining of stringIn the following example, variable result1 is assigned the value of true because the word "Birds" appears at the beginning of the string. Variable result2 is assigned the value of false because "Birds" doesn't appear at the beginning of the string.*/result1 = /^Birds/.test("Birds fly");result2 = /^Birds/.test("Big Birds fly");

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.