gpt4 book ai didi

python - 如何在 Ruby 中实现类似 Python 的字符串剥离?

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

在 Python 中,我可以去除字符串中的空格、换行符或随机字符,例如

>>> '/asdf/asdf'.strip('/')
'asdf/asdf' # Removes / from start
>>> '/asdf/asdf'.strip('/f')
'asdf/asd' # Removes / from start and f from end
>>> ' /asdf/asdf '.strip()
'/asdf/asdf' # Removes white space from start and end
>>> '/asdf/asdf'.strip('/as')
'df/asdf' # Removes /as from start
>>> '/asdf/asdf'.strip('/af')
'sdf/asd' # Removes /a from start and f from end

但是 Ruby 的 String#strip方法不接受任何参数。我总是可以退回到使用正则表达式,但是有没有一种方法/方法可以在不使用正则表达式的情况下从 Ruby 中的字符串(前后)中去除随机字符?

最佳答案

您可以使用正则表达式:

"atestabctestcb".gsub(/(^[abc]*)|([abc]*$)/, '')
# => "testabctest"

当然你也可以把它变成一个方法:

def strip_arbitrary(s, chars)
r = chars.chars.map { |c| Regexp.quote(c) }.join
s.gsub(/(^[#{r}]*)|([#{r}]*$)/, '')
end

strip_arbitrary("foobar", "fra") # => "oob"

关于python - 如何在 Ruby 中实现类似 Python 的字符串剥离?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12262621/

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