选择文本字符串
ABCDchinchwad18-Mar-2010-11.sql.zip
ABCDsolapur18-Mar-2010-10.sql.zip
如何查找“ABCD”和日期“18-Mar-2010”之间的字符串
预期结果:
chinchwad
solapur
ABCDchinchwad18-Mar-2010-11.sql.zip
ABCDsolapur18-Mar-2010-10.sql.zip
How do I find the string between "ABCD" and the date "18-Mar-2010"
Expected resuts:
chinchwad
solapur
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
或使用 sed
或使用 awk
or using sed
or using awk
输出:
删除
find
添加的路径(比 更灵活、可移植和可维护)解析ls
):Output:
To remove the path added by
find
(which is more flexible, portable and maintainable than parsingls
):也许你应该去正则表达式
Maybe you should head to regexps
文件名包含以下输入内容
输出为
The filename contains the following input content
The output is
Perl 在这里会做得很好:
如果您必须使用
find
:Perl will do well here:
If you must use
find
: