Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序来搜索和构建一个字符串(或变量)在文本文件中的所有时间列表。有点像文本编辑器中的 Find All 功能,我可以使用找到的信息构建一个列表,例如
S350 S250 S270 S5000
我可以用什么来做这个搜索?它将有一个不变的值(在这种情况下为 S),后跟最多 4 位数字
RegEx似乎是个不错的选择。
RegEx
像..这样的东西S(\d{1,4})?可能对你有用。
S(\d{1,4})?
Expresso是我首选的正则表达式作曲家。