使用 windows findstr 和正则表达式提取子字符串
Extract substring using windows findstr and regular expressions
我搜索了已经提出的问题,虽然我找到了一些有趣的答案,但我无法将这些答案应用到我的具体案例中
如果您觉得我太愚蠢,我深表歉意:(
情况如下:
我有一个 html 文件,其中包含几行如下所示:
<h3 class ="title-3"><a href="/product/PD00334951.html">Title name nb 1</a></h3>
<h3 class ="title-3"><a href="/product/PD00397772.html">Title name nb 2</a></h3>
<h3 class ="title-3"><a href="/product/PD00324955.html">Title name nb 3</a></h3>
...
使用 windows 命令行工具 findstr(并且仅使用该工具),我正在尝试检查是否可以仅提取 /product/PDxxxxxxxx.html 子字符串
猜猜看?
非常感谢
我终于切换到 PowerShell,这样字符串操作会更容易
不用再回答了
我搜索了已经提出的问题,虽然我找到了一些有趣的答案,但我无法将这些答案应用到我的具体案例中 如果您觉得我太愚蠢,我深表歉意:(
情况如下:
我有一个 html 文件,其中包含几行如下所示:
<h3 class ="title-3"><a href="/product/PD00334951.html">Title name nb 1</a></h3>
<h3 class ="title-3"><a href="/product/PD00397772.html">Title name nb 2</a></h3>
<h3 class ="title-3"><a href="/product/PD00324955.html">Title name nb 3</a></h3>
...
使用 windows 命令行工具 findstr(并且仅使用该工具),我正在尝试检查是否可以仅提取 /product/PDxxxxxxxx.html 子字符串
猜猜看? 非常感谢
我终于切换到 PowerShell,这样字符串操作会更容易 不用再回答了