gpt4 book ai didi

ruby - 无需转义反斜杠的字符串文字

转载 作者:太空宇宙 更新时间:2023-11-03 17:10:13 25 4
gpt4 key购买 nike

在 C# 中,我可以通过在字符串前使用 @ 来编写反斜杠和其他特殊字符而无需转义,但我必须转义双引号。

C#

string foo = "The integer division operator in VisualBASIC is written \"a \\ b\"";
string bar = @"The integer division operator in VisualBASIC is written \"a \ b\""

在 Ruby 中,我可以使用单引号字符串文字,但我想将其与字符串插值结合使用,例如 "text #{value}"。 Ruby 中是否有与 C# 中的 @ 等价的东西?

最佳答案

在 Ruby 中有一些类似的东西。例如

foo = %Q(The integer division operator in VisualBASIC is written "a \\ b" and #{'interpolation' + ' works'})

您还可以在其中插入字符串。唯一需要注意的是,您仍然需要转义 \ 字符。

HTH

关于ruby - 无需转义反斜杠的字符串文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29124058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com