gpt4 book ai didi

regex - 如何使用正则表达式和 Powershell 提取字符串 "Task(12345)"中的数字?

转载 作者:行者123 更新时间:2023-12-04 22:26:10 27 4
gpt4 key购买 nike

如何使用正则表达式和 Powershell 提取字符串“Task(12345)”中的数字?我尝试了以下方法,但没有机会。

$file = gc myfile.txt
$matches = ([regex]"Task\(\d{1,5}\)").matches($file)
# Get a list of numbers

有人可以帮我找到正确的正则表达式吗?

最佳答案

您想获取文件中的所有事件吗?如果是这样,我会执行以下

$r = "^Task\((\d+)\)$"
$res = gc myFile.txt |
?{ $_ -match $r } |
%{ $_ -match $r | out-null ; $matches[1] }

关于regex - 如何使用正则表达式和 Powershell 提取字符串 "Task(12345)"中的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1139168/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com