在Powershell中尝试仅在文本文件中搜索数字,然后将其打印到屏幕上。不需要其他所有字符。
我在这里搜索了类似的主题,但发现是Java或Python。我正在尝试使用Powershell实现这一目标。文本文件:
line_text
45/some_words.some_other_words
another_line_text
代码: 获取内容-路径'path \ to \ textfile'|选择字符串-模式'\ d +'
返回: “ 45 / some_words.some_other_words”
我只想得到45并使用Powershell打印出来。
答案 0 :(得分:0)
使用以下内容-
[regex]::Matches((gc $file), '\d+').Value