无需额外软件即可处理 Windows 文本?
我有这些输出大量数据的机器。不幸的是,输出的文件的结构很奇怪。我希望能够进行一些复杂的文本处理(perl 样式)来解析数据并能够输出为 Excel 格式。我也想自动化此操作,但我可以使用的唯一服务器是运行 Windows XP(带有 Office),并且不允许我安装任何无关的软件(没有 .NET、Powershell、ActivePerl 等) 最好的方法是什么? VB/VBA 中的正则表达式是否足够强大,足以让我在 Excel 中编写脚本?
I've got these machine that output a lot of data. Unfortunately, the files outputted are structured in a strange way. I'd like to be able to do some complex text processing (perl style) to parse the data and be able to output to Excel format. I'd also like to automate this but the only server that I can use is running Windows XP (with Office) and I'm not allowed to install any extraneous software (no .NET, Powershell, ActivePerl, etc.)
What is the best way to do this? Are regex in VB/VBA powerful enough for me to script in Excel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用类似 AutoIt 的东西。它有一个内置的正则表达式引擎,并且有一个 Excel 标准。它可以编译为独立的 exe,因此符合要求。作为一种语言,它也非常简单,因此不需要花很长时间就能弄清楚它来自其他语言。
I'd recommend using something like AutoIt. It has an inbuilt regex engine and there is an excel standard include. It can compile to a standalone exe so fits the bill. It's also pretty simple as a langauge, so shouldn't take to long to figure out coming from other languages.