从字符串中提取特定数据的脚本帮助
以下是单个文件中的数据列表。我想在 Powershell 中运行它。
LESCAR85 2010年7月31日 1700678991 / 70039536 $35.00
小队8 2010年7月31日 1698125739 / 70039539 $35.00
林菲尔德 07/29/10 11041563 / 70039639 $35.00
8 位数字,然后是最后的美元金额,我想转换为 csv,以便我可以在 Excel 文件中使用它。第一组较长的数字并不总是相同,这会改变我需要的 8 位数字序列和美元金额之间的空格数。
谢谢!
Below is a list of data in a single file. I'd like to run this in Powershell.
LESCAR85 07/31/10 1700678991
/ 70039536 $35.00
SQUADCT8 07/31/10 1698125739
/ 70039539 $35.00
RINGFIEL 07/29/10 11041563 /
70039639 $35.00
The 8 digit number and then the dollar amount at the end I would like convert to csv so that I can use that in an excel file. The first set of longer numbers is not always the same which changes the number of spaces between the 8 digit sequence I need and the dollar amount.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要“/”(以空格为界的斜杠)始终将您感兴趣的数据与字符串的开头分隔开,那么您就可以使用以下内容:
foreach 循环的作用:
As long as ' / ' (slash bounded by spaces) always seperates the data you are interested in from the beginning of the string, then you can use this:
What the foreach loop does: