主页

Ruby .sub的使用(替换字符串中第一个匹配的内容)

2023-08-12 11:03AM

如果你只想替换第一个匹配的内容,可以使用 .sub 方法。.sub 方法的用法与 .gsub 类似,但它只替换第一个匹配项。

origin_string = "This is an example string."
replacement_string = "replacement"

new_string = origin_string.sub("example", replacement_string)
puts new_string

上述示例中,只有第一个匹配的 example 被替换为 replacement,输出结果将是 This is an replacement string.

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论