Notepad++列编辑、正则查找、替换

前端之家收集整理的这篇文章主要介绍了Notepad++列编辑、正则查找、替换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


本文转载自高爽|Coder,原文地址:http://www.jb51.cc/article/p-bubponua-kw.html

目标

将源数据转成初始化sql语句。
源数据

  1. 104110040018,1,中国银行,中国银行天津琼州道支行,NULL,1100,天津市,12,天津市
  2. 104110040059,中国银行天津利民道支行,天津市
  3. 104110040091,中国银行天津九龙路支行,天津市
  4. 104110040106,中国银行天津枫林路支行,226)"> 104110040139,中国银行天津滨湖路支行,226)"> 104110040155,中国银行天津南楼支行,226)"> 104110045006,中国银行天津和平支行,226)"> 104110050021,中国银行天津海洋支行,226)"> 104110050048,中国银行泰达大街支行,天津市

处理列头

将光标定位在第一行数据开始处,按alt+c组合键,弹出列编辑窗口,如图:

插入相应文本,确定后,数据变成了下面这样:

    insertintot_bankvalues(104110040018,226)"> insertintot_bankvalues(104110040059,226)"> insertintot_bankvalues(104110040091,226)"> insertintot_bankvalues(104110040106,226)"> insertintot_bankvalues(104110040139,226)"> insertintot_bankvalues(104110040155,226)"> insertintot_bankvalues(104110045006,226)"> insertintot_bankvalues(104110050021,226)"> insertintot_bankvalues(104110050048,85); font-family:'microsoft yahei'; font-size:15px; line-height:35px"> 处理列尾

    按ctrl+h组合键,弹出替换窗口,如图:

    windows下,每行都以这两个字符结束,\r使光标移到行首,\n使光标下移一行,注意要将查找模式选择为扩展,全部替换后,数据变成了下面这样:

处理文本

要将中文转换成两端带单引号的,匹配中文需要用正则[一-龥]+,这里的问题是我们替换的时候要获取当前匹配的字符串,按ctrl+h组合键,弹出替换窗口,如图:

使用小括号将匹配的字符串包上,然后替换值中可以通过$1表达式来获取到当前正在匹配的值,这里可以更复杂些,比如存在多个小括号,相应的可以使用$1、$2、$3来获取对应值,全部替换后,就是我们最终想要的数据了。

[sql]
    insertintot_bankvalues(104110040018,'中国银行','中国银行天津琼州道支行',NULL,'天津市','天津市');
  1. insertintot_bankvalues(104110040059,'中国银行天津利民道支行','天津市');
  2. insertintot_bankvalues(104110040091,'中国银行天津九龙路支行',226)"> insertintot_bankvalues(104110040106,'中国银行天津枫林路支行',226)"> insertintot_bankvalues(104110040139,'中国银行天津滨湖路支行',226)"> insertintot_bankvalues(104110040155,'中国银行天津南楼支行',226)"> insertintot_bankvalues(104110045006,'中国银行天津和平支行',226)"> insertintot_bankvalues(104110050021,'中国银行天津海洋支行','天津市');
原文链接:https://www.f2er.com/regex/360720.html

猜你在找的正则表达式相关文章