Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  转换前:
  <br><textarea id='t1' rows='10' cols='40'></textarea></br>
  <input id='btn1' type='button' value='敏感词过滤'>
  <input id='btn2' type='button' value='提取纯文本'><br>
  转换后:<br>
  <textarea id='t2' rows='10' cols='40'></textarea>
</body>
</html>
 
var oTxt1 = document.getElementById('t1');
var oTxt2 = document.getElementById('t2');
var btn1 = document.getElementById('btn1');
var btn2 = document.getElementById('btn2');
btn1.onclick = function(){
  var re = /[你我他]/g;
  oTxt2.value = oTxt1.value.replace(re, '***');
};
btn2.onclick = function(){
  var re = /<[^<>]+>/g;
  oTxt2.value = oTxt1.value.replace(re, '');
};
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers