Ruby:如何在正则表达式中匹配双引号

发布于 2024-08-06 11:36:23 字数 369 浏览 4 评论 0 原文

我正在尝试使用 Ruby one liner 从文本文件中删除一些双引号 (") 字符,但收效甚微。

我尝试了以下操作和一些变体,但没有成功。

ruby -pe 'gsub(/\"/,"")' < myfile.txt

这给了我以下错误:

-e:1: Invalid argument - < (Errno::EINVAL)

我正在运行 Ruby在 Win 计算机上:

ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]

有什么想法吗?

I am trying to remove some double quotes (") characters from a text file using a Ruby one liner, with little success.

I have tried the following, and some variations, without success.

ruby -pe 'gsub(/\"/,"")' < myfile.txt

This gives me the following error:

-e:1: Invalid argument - < (Errno::EINVAL)

I am running Ruby on a Win machine:

ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]

Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

并安 2024-08-13 11:36:23

看起来像 cmd 引用地狱——请注意,单引号在 cmd shell 中是没有意义的。

ruby -pe "gsub(34.chr,'')" < filename

但这可能更好:

ruby -pe "$_.delete!(34.chr)" < filename

Looks like cmd quoting hell -- note that single quotes are meaningless in the cmd shell.

ruby -pe "gsub(34.chr,'')" < filename

but this is probably better:

ruby -pe "$_.delete!(34.chr)" < filename
梦里南柯 2024-08-13 11:36:23

怎么样:

ruby -e 'puts $stdin.read.gsub(34.chr,"")' <myfile.txt

How about:

ruby -e 'puts $stdin.read.gsub(34.chr,"")' <myfile.txt
反目相谮 2024-08-13 11:36:23
ruby -pe 'gsub(/\"/,"")' myfile.txt
ruby -pe 'gsub(/\"/,"")' myfile.txt
空名 2024-08-13 11:36:23

听起来问题出在外壳上。

您的错误消息来自 Ruby,因此 Ruby 似乎正在接收 < 作为参数。这意味着 shell 不执行任何重定向。

我手头没有 Windows 机器,所以我会先仔细检查一下您是否正确地进行了重定向。第一次检查时,我认为 < myfile.txt 应该是

Sounds like the problem is with the shell.

Your error message is from Ruby, so it seems Ruby is receiving the < as an argument. This means the shell isn't doing any redirection.

I don't have a Windows machine handy so I'd double check that you're getting the redirection right first. On first inspection I think the < myfile.txt should be <myfile.txt

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文