码迷,mamicode.com
首页 > 编程语言 > 详细

[Javascript] Regex: '$`', '$&', '$''

时间:2016-01-15 06:25:22      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

var input = "foobar";
var result = input.replace(‘bar‘, ‘$`‘); // $`: replace ‘bar‘  with everything before our match.--> foofoo

var input = "foobarbaz";
var result = input.replace(‘bar‘, ‘$&‘); // $&: the match one --> foobarbaz

var input = "foobarbaz";
var result = input.replace(‘bar‘, ‘$\‘‘); // $‘: replace with everything come after the match --> foobazbaz

var input = "foobarbaz";
var result = input.replace(‘bar‘, ‘$$‘); // repalce with $ --> foo$baz

var input = "foobarbaz";
var result = input.replace(‘bar‘, ‘?‘); // replace with ? --> foo?baz


console.log(result);

 

[Javascript] Regex: '$`', '$&', '$''

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/5132173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!