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 相关文章推荐
使用SyntaxHighlighter实现HTML高亮显示代码的方法
Feb 04 Javascript
jquery ajax abort()的使用方法
Oct 28 Javascript
jquery 滚动条事件简单实例
Jul 12 Javascript
jquery得到iframe src属性值的方法
Sep 25 Javascript
JavaScript基础语法、dom操作树及document对象
Dec 02 Javascript
js+html5实现的自由落体运动效果代码
Jan 28 Javascript
jQuery实现优雅的弹窗效果(6)
Feb 08 Javascript
jQuery简单绑定单个事件的方法示例
Jun 10 jQuery
JavaScript实现三级联动菜单效果
Aug 16 Javascript
JavaScript封装的常用工具类库bee.js用法详解【经典类库】
Sep 03 Javascript
微信小程序Echarts图表组件使用方法详解
Jun 25 Javascript
小程序简单两栏瀑布流效果的实现
Dec 18 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
PHP 上传文件大小限制
2009/07/05 PHP
php 模拟POST提交的2种方法详解
2013/06/17 PHP
PHP中if和or运行效率对比
2014/12/12 PHP
详解php设置session(过期、失效、有效期)
2015/11/12 PHP
PHP静态成员变量和非静态成员变量详解
2017/02/14 PHP
php文件上传类的分享
2017/07/06 PHP
PHP新特性之字节码缓存和内置服务器
2017/08/11 PHP
JavaScript 事件查询综合
2009/07/13 Javascript
jQuery ajax dataType值为text json探索分享
2013/09/23 Javascript
js获取对象为null的解决方法
2013/11/21 Javascript
扩展JS Date对象时间格式化功能的小例子
2013/12/02 Javascript
微信js-sdk上传与下载图片接口用法示例
2016/10/12 Javascript
详谈commonjs模块与es6模块的区别
2017/10/18 Javascript
mapboxgl实现带箭头轨迹线的代码
2021/01/04 Javascript
基于Django contrib Comments 评论模块(详解)
2017/12/08 Python
python自动截取需要区域,进行图像识别的方法
2018/05/17 Python
tensorflow saver 保存和恢复指定 tensor的实例讲解
2018/07/26 Python
pycharm 取消默认的右击运行unittest的方法
2018/11/29 Python
python中用logging实现日志滚动和过期日志删除功能
2019/08/20 Python
Python面向对象之私有属性和私有方法应用案例分析
2019/12/31 Python
python中使用paramiko模块并实现远程连接服务器执行上传下载功能
2020/02/29 Python
浅谈tensorflow中dataset.shuffle和dataset.batch dataset.repeat注意点
2020/06/08 Python
python logging模块的使用详解
2020/10/23 Python
Russell Stover巧克力官方网站:美国领先的精美巧克力制造商
2016/11/27 全球购物
Java里面有没有全局变量?为什么?
2015/02/06 面试题
关联、聚合(Aggregation)以及组合(Composition)的区别
2012/02/29 面试题
C#基础面试题
2016/10/17 面试题
北京鼎普科技股份有限公司软件测试面试题
2012/04/07 面试题
主要的Ajax框架都有什么
2013/11/14 面试题
传媒专业推荐信范文
2013/11/23 职场文书
高一学生期末评语
2014/04/25 职场文书
2014财务部年度工作总结
2014/12/08 职场文书
门卫岗位职责
2015/02/09 职场文书
活着观后感
2015/06/03 职场文书
ObjectMapper 如何忽略字段大小写
2021/06/29 Java/Android
使用 Apache Dubbo 实现远程通信(微服务架构)
2022/02/12 Servers