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


Posted in Javascript onFebruary 03, 2016

本文实例讲述了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");

希望本文所述对大家JavaScript程序设计有所帮助。

Javascript 相关文章推荐
JavaScript使用IEEE 标准进行二进制浮点运算产生莫名错误的解决方法
May 28 Javascript
Ext JS添加子组件的误区探讨
Jun 28 Javascript
JS实现关键字搜索时的相关下拉字段效果
Aug 05 Javascript
jQuery.position()方法获取不到值的安全替换方法
Mar 13 Javascript
D3.js中data(), enter() 和 exit()的问题详解
Aug 17 Javascript
js带前后翻页的图片切换效果代码分享
Sep 08 Javascript
javascript中的作用域和闭包详解
Jan 13 Javascript
jquery.validate提示错误信息位置方法
Jan 22 Javascript
DropDownList实现可输入可选择(两种版本可选)
Dec 07 Javascript
解决React Native端口号修改的方法
Jul 28 Javascript
什么是Vue.js框架 为什么选择它?
Oct 17 Javascript
vue路由的配置和页面切换详解
Sep 09 Javascript
js点击文本框弹出可选择的checkbox复选框
Feb 03 #Javascript
AngularJS实现Model缓存的方式
Feb 03 #Javascript
JS实现CheckBox复选框全选、不选或全不选功能
Jul 28 #Javascript
javascript实现在网页中运行本地程序的方法
Feb 03 #Javascript
简单实现js选项卡切换效果
Feb 03 #Javascript
Eclipse编辑jsp、js文件时卡死现象的解决办法汇总
Feb 02 #Javascript
JavaScript+html5 canvas实现本地截图教程
Apr 16 #Javascript
You might like
56.com视频采集接口程序(PHP)
2007/09/22 PHP
php下保存远程图片到本地的办法
2010/08/08 PHP
PHP中遍历stdclass object的实现代码
2011/06/09 PHP
php自动给文章加关键词链接的函数代码
2012/11/29 PHP
thinkphp视图模型查询提示ERR: 1146:Table 'db.pr_order_view' doesn't exist的解决方法
2014/10/30 PHP
php实现读取内存顺序号
2015/03/29 PHP
浅谈PHP中output_buffering
2015/07/13 PHP
Yii视图CGridView列表用法实例分析
2016/07/12 PHP
laravel 实现向公共模板中传值 (view composer)
2019/10/22 PHP
基于JavaScript实现继承机制之构造函数+原型链混合方式的使用详解
2013/05/07 Javascript
Javascript浅谈之this
2013/12/17 Javascript
javascript读取Xml文件做一个二级联动菜单示例
2014/03/17 Javascript
nw.js实现类似微信的聊天软件
2015/03/16 Javascript
JavaScript中setMonth()方法的使用详解
2015/06/11 Javascript
深入解析jQuery中Deferred的deferred.promise()方法
2016/05/03 Javascript
BootStrap实现带有增删改查功能的表格(DEMO详解)
2016/10/26 Javascript
微信小程序实现倒计时补零功能
2018/07/09 Javascript
vue、react等单页面项目部署到服务器的方法及vue和react的区别
2018/09/29 Javascript
vue开发拖拽进度条滑动组件
2019/09/21 Javascript
vue双向绑定数据限制长度的方法
2019/11/04 Javascript
Python实现去除代码前行号的方法
2015/03/10 Python
Python中偏函数用法示例
2018/06/07 Python
Python高级特性与几种函数的讲解
2019/03/08 Python
浅谈pyqt5在QMainWindow中布局的问题
2019/06/21 Python
Ubuntu+python将nii图像保存成png格式
2019/07/18 Python
python 一篇文章搞懂装饰器所有用法(建议收藏)
2019/08/23 Python
Python 获取项目根路径的代码
2019/09/27 Python
Python获取二维数组的行列数的2种方法
2020/02/11 Python
用python发送微信消息
2020/12/21 Python
CSS3之边框多颜色Border-color属性使用示例
2013/10/11 HTML / CSS
详解canvas多边形(蜘蛛图)的画法示例
2018/01/29 HTML / CSS
美国开幕式潮店:Opening Ceremony
2018/02/10 全球购物
是否可以从一个static方法内部发出对非static方法的调用?
2014/08/18 面试题
高中的职业生涯规划书
2013/12/28 职场文书
有限责任公司股东合作协议书
2014/12/02 职场文书
离婚起诉书范本
2015/05/18 职场文书