复制CSDN的BLOG代码,去掉前面行号的方法

我们如果从CSDN的BLOG复制代码,出现前面的行号,比如

   1. /* 文本没有缩写 */
   2. /* Specify blanket rules for all elements */
   3. font-size:12px;
   4. line-height:160%;
   5. font-weight:bold;
   6. font-style:italic;
   7. font-family: "Lucida Grande",Arial,Sans-serif;
   8.
   9. /* 文本有缩写 */
  10. /* Specify blanket rules for all elements */
  11. font: 12px/160% bold italic "Lucida Grande",Arial,Sans-serif;


我们可以用正则表达式替换掉他们。

正则为

^\s+\d+\.

替换为空格就行了












<script type="text/javascript"> </script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script>

你可能感兴趣的:(JavaScript,正则表达式,Blog)