Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <textarea id='cont'></textarea>
	<p><input type="button" value="匹配hi" onclick="t1();"></p>
	<p><input type="button" value="匹配hi开头及hi开头的单词" onclick="t2();"></p>
	<p><input type="button" value="匹配hi开头的单词但不是hi" onclick="t3();"></p>
	<p><input type="button" value="匹配进行时的单词" onclick="t4();"></p>
	<p><input type="button" value="匹配un前缀的反义词" onclick="t5();"></p>
	<p><input type="button" value="匹配单词中间的hi部分" onclick="t6();"></p>
	<p><input type="button" value="匹配输入的名字是不是lisi" onclick="t7();"></p>
              
            
!

CSS

              
                		textarea{
			width: 400px;
			height: 200px; 
		}
              
            
!

JS

              
                function t1(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  var reg = /hi/;//仅仅是看字符串中有没有hi
  alert(reg.test(cv));//满足 返回true  不满足 返回false
}
function t2(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  //var reg = /\bhi.+/;// 错误1 匹配hi开头的单词
  ////var reg = /\bhi\w+/;// 错误2
  var reg = /\bhi\w*/; 
  alert(reg.exec(cv));//exec返回一个对象  没找到返回none
}
function t3(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  var reg = /\bhi/;//正则测试hi开头的单词但不是hi
  alert(reg.exec(cv));//exec返回一个对象  没找到返回none
} 
function t4(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  var reg = /\b[\w]+ing\b/;//*表示匹配0-无穷  +表示匹配1-无穷
  alert(reg.exec(cv));
} 
function t5(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  var reg = /\bun[\w]+\b/;//匹配un前缀的反义词
  alert(reg.exec(cv));
}
function t6(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  var reg = /\Bhi\B/;//匹配单词中间的hi部分
  alert(reg.exec(cv));
}
function t7(){
  var cont = document.getElementById('cont');
  var cv = cont.value;
  var reg = /^lisi$/;//匹配输入的名字是不是lisi
  alert(reg.exec(cv));
}
              
            
!
999px

Console