使用 awk 可以做哪些 Perl 做不到的事情?
我在某处读到过有关 awk 中存在但 Perl 中没有的一项特定功能的内容。我又找不到它了。
如果这里有人能指出的话,我将不胜感激。
这可能是一个无用的琐事,但我仍然很想知道。
I had read somewhere about one specific feature that is present in awk
but not in Perl. I have failed in locating it again.
I would appreciate it if anyone here can point it out.
This might be a useless trivia, but I am still curious to know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
来自 perldoc perlvar:
From perldoc perlvar:
awk 到 perl 的翻译器 手册页 挖掘出一件事: Perl 无法做到:
但总的来说,Perl 是图灵完备的,它可以做 awk 能做的一切。 awk 到 perl 转换器的存在这一事实就足以证明:)
The awk to perl translator man page digs up one thing that Perl can't do:
But in general, Perl is turing complete, it can do everything awk can do. The fact that an awk to perl translator exists should be proof enough :)
perltrap - Awk 陷阱 列出了 awk 之间的几个差异和perl。
另请参阅:a2p - Awk 到 Perl 转换器
perltrap - Awk Traps lists several differences between awk and perl.
See also: a2p - Awk to Perl translator
正则表达式子例程(例如
模式匹配)是我怀念 awk 的一个功能。
Regular expression subroutines like
for pattern matching is a feature I miss from awk.