博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Regular Expressions] Match the Start and End of a Line
阅读量:6471 次
发布时间:2019-06-23

本文共 404 字,大约阅读时间需要 1 分钟。

We can use:

^: match the beginning$: match the end

 

Let's say we have the string like the following:

var str = `12/1/1612-16-1311/12/1612-12-2016`;

 

What we want to do is get all the '12' which at the begining of each line:

If we do like that:

var regex = /^12/g;

 

To solve this problem, we can use 'm' flag:

var regex = /^12/gm;

 

And also we want to get the line which end by '16':

var regex = /^12.+16$/gm;

转载地址:http://ekcko.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
MyBatis+Spring结合
查看>>
Office 365之SkyDrive Pro
查看>>
Java Web 高性能开发
查看>>
初识Scala反射
查看>>
第三十九天
查看>>
Redis详解
查看>>
论程序员加班的害处
查看>>
codeblocks快捷键
查看>>
基于HTML5的WebGL设计汉诺塔3D游戏
查看>>
WPF资料链接
查看>>
过滤DataTable表中的重复数据
查看>>
再次更新
查看>>
mysql的数据类型int、bigint、smallint 和 tinyint取值范围
查看>>
移动铁通宽带上网设置教程
查看>>
Python算法(含源代码下载)
查看>>
利用Windows自带的Certutil查看文件MD5
查看>>
通过原生js添加div和css
查看>>
查询指定名称的文件
查看>>
AJAX POST&跨域 解决方案 - CORS
查看>>