最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JavaScript檢查子字符串是否在字符串中的方法

 更新時(shí)間:2016年02月03日 09:26:58   作者:皮蛋  
這篇文章主要介紹了JavaScript檢查子字符串是否在字符串中的方法,涉及JavaScript查詢、正則匹配等操作技巧,需要的朋友可以參考下

本文實(shí)例講述了JavaScript檢查子字符串是否在字符串中的方法。分享給大家供大家參考,具體如下:

var strnew="Hello Raghu How are u"
//Checking existence in entire string
if(strnew.indexOf("Raghu") != -1 )
{
  alert("Exists");
}
/*
Checking existence at the end of string
For 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 string
In 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");

更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript查找算法技巧總結(jié)》及《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)

希望本文所述對大家JavaScript程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評論

洪洞县| 巴林右旗| 红桥区| 伊金霍洛旗| 牡丹江市| 天峨县| 黎川县| 无为县| 临漳县| 平乐县| 曲周县| 黑龙江省| 凤山县| 名山县| 阳信县| 周至县| 和龙市| 台湾省| 台中市| 峨眉山市| 长阳| 濉溪县| 改则县| 侯马市| 廊坊市| 长沙市| 察哈| 西丰县| 阜阳市| 库伦旗| 米泉市| 盐山县| 邹平县| 罗甸县| 罗源县| 阿鲁科尔沁旗| 特克斯县| 刚察县| 贵德县| 静海县| 章丘市|