Editplus 正则表达式使用录

1. 匹配文首的行号    ^([0-9][0-9]*\.)

 

例如  1.

         10.

         111.

                                 (^([0-9][0-9]*))|(^[0-9][0-9]*)

例如

             1

           11

         111

 

2. 匹配html标签        <[^>]*>

 

例如  <p></p>

         <p style="width:229px;height:20px;float:left;"></p>

 

3. 匹配空行               ^ *\n

 

4. 匹配非空包含内容的括号               \([^)][^)]*\)

 

例如   (例如)

          (ssss)

          (   )

 

5. 辅助python切割Linux的定时任务

    (获得时间、命令、参数三个结果)               (\*|[0-9]) [a-z]和([a-z]|[0-9]) (>>|--|/|&>)

 

例如   16 * * * ncadamanager forward_valuation >> /opt/logs/cada/crontab/forward_valuation.log 2>&1
           */20 * * * 1-5 ncadamanager cv_stock_ratings &> /opt/logs/cada/cron/cv_stock_ratings.log

 

6. 匹配中文               [^\u4e00-\u9fa5]*

 

例如    請恠這裡輸兦呅牸

          请在这里输入文字

 

(未完待续http://jsoneditoronline.org/index.html)

你可能感兴趣的:(正则,Editplus)