Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个未知的输入字符串,我想将其用作正则表达式,但它可以包含许多字符,例如 (,/,\
在 Ruby 中,是否可以指定要匹配的输入参数只是一个文字字符串。
例如 text.match_literal(string) 而不是 text.match(string) ?
或者,是通过编写一个反斜杠函数来解决问题的唯一方法吗?
谢谢,
您可以使用index方法:
index
text.index(string)