vim 正则表达式获取双引号中的字符
1.获取双引号中的字符
[html] view plain copy
- :%s/.*\".?\".*/\1/
2.用字符串建立标签
如 hello <hello></hello>
[html] view plain copy
- :%s/[a?z,A?Z]?/<\1><\/\1>/
时间: 2024-10-05 06:43:48
1.获取双引号中的字符
[html] view plain copy
2.用字符串建立标签
如 hello <hello></hello>
[html] view plain copy