博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sublime搜索和替换--正则
阅读量:6320 次
发布时间:2019-06-22

本文共 914 字,大约阅读时间需要 3 分钟。

Search and Replace

Sublime Text features two main types of search:

We’ll examine them in turn, but first let’s talk about a powerful tool for searchingtext: regular expressions.

Regular Expressions

Regular Expressions find complex patterns in text. To take full advantage ofthe search and replace facilities in Sublime Text, you should at least learnthe basics of regular expressions. In this guide we won’t explain how to useregular expressions.

Typing out regular expression gets boring fast, and saying it is even moreannoying, so instead nerds usually shorten that to regexp or regex.

This is how a regex might look:

(?

:Sw|P)i(?:tch|s{2})\s(?:it\s)?

of{2}!

Regexes are known to hurt people’s feelings.

To use regular expressions in Sublime Text, you first need to activate them inthe various search panels. The search term will otherwise be interpretedliterally.

Sublime Text uses the for regular expressions.

转载地址:http://ozcaa.baihongyu.com/

你可能感兴趣的文章
MSSQL 调用C#程序集 实现C#字符串到字符的转化
查看>>
【微信】1.微信小程序开发--入门
查看>>
DELL平板如何安装WIN10系统 -PE启动问题
查看>>
Mac上Vim的配置文件及插件
查看>>
js进阶 9-12 如何将数组的信息添加到下拉列表
查看>>
js 进阶 10 js选择器大全
查看>>
Linux 下MongoDb的安装
查看>>
Amazon RDS多区域高可用测试
查看>>
为什么分布式一定要有Redis?
查看>>
微服务之分布式跟踪系统(springboot+pinpoint)
查看>>
FAT AP v200R005 配置二层透明模式(web&命令行,开局)
查看>>
01-股票预测-买卖急切度
查看>>
系列文章--一步一步学Silverlight2
查看>>
C++ 类的多态三(多态的原理--虚函数指针--子类虚函数指针初始化)
查看>>
自定义组合控件的过程归纳
查看>>
vim 可视化模式(visual模式)
查看>>
使用rollup 开发专业js library
查看>>
统计思维就是透过现象看本质
查看>>
c#操作access,update语句不执行的解决办法
查看>>
powerdesigner 生成注释脚本
查看>>