为什么我输错字符串后 IRB 无法工作?

发布于 2024-12-06 09:47:08 字数 283 浏览 0 评论 0原文

我开始使用IRB学习Ruby,并在下面写了错误的代码:

irb(main):001:0>"amefurashi".delete(aiueo")

我注意到它缺少双引号,提示符变为:

irb(main):002:1"

我写了正确的代码:

irb(main):001:1"amefurashi".delete("aiueo")

但为什么它不起作用?

I started to learn Ruby using IRB and wrote the wrong code below:

irb(main):001:0>"amefurashi".delete(aiueo")

I noticed it was missing a double-quote mark, and the prompt changed to:

irb(main):002:1"

I wrote the correct code:

irb(main):001:1"amefurashi".delete("aiueo")

but why won't it work?

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

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

发布评论

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

评论(1

勿忘初心 2024-12-13 09:47:08

提示您 > 的 IRB 行适用于新语句。

当提示显示 " 时,这意味着您在一个字符串内,并且 IRB 希望您完成输入文本并用另一个引号结束您的字符串。

看起来您正在做的事情是尝试在出现新的 (>) 提示之前再次输入您的语句

如果您陷入错误语句并想要重新开始,请按 Ctrl-C,然后输入,你会得到一个干净的> 提示。

The IRB lines that prompt you with > are for new statements.

When the prompt says " instead, that means you are inside a string, and IRB is expecting you to finish entering your text and close your string with another quotation mark.

It looks like what you are doing is trying to enter your statement again, before you get a new (>) prompt.

If you are stuck in the middle of an incorrect statement and want to start over, press Ctrl-C, then Enter and you will get a clean > prompt.

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