我正在创建在线正则表达式以查找和替换网页。 但这并不能取代任何东西。
Index.html
<input type="text" id="textInput"></textarea>
<input type="text" id="find"></textarea>
<input type="text" id="replace"></textarea>
<button id="button"> Submit </button>
Replacer.js
$( document ).ready( function() {
$("#button").on( 'click', function(){
var textInput = $("#textInput").val();
var find = $("#find").val();
var replace = $("#replace").val();
var newText = textInput.replace( /find/, replace );
console.log( newText );
})
})
Text = 2019,find =(\ d {4}),replace = J $ 1
我希望在控制台中使用J 2019。但我要2019年了。