JavaScript RegExp \n 元字符
描述
字符 \n 匹配换行符。
浏览器支持
/\n/
是 ECMAScript1 (ES1) 特性。
ES1 (JavaScript 1997) 在所有浏览器中得到完全支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |
语法
new RegExp("\\n")
或者简写为
/\n/
正则表达式搜索方法
在 JavaScript 中,正则表达式文本搜索可以使用不同的方法。
使用 **pattern** 作为正则表达式,以下是最常用的方法
示例 | 描述 |
---|---|
text.match(pattern) | String 方法 match() |
text.search(pattern) | String 方法 search() |
pattern.exec(text) | RexExp 方法 exec() |
pattern.test(text) | RegExp 方法 test() |