Ruby .gsub 如何缩短进行类似替换的代码行

发布于 2024-10-18 10:31:22 字数 252 浏览 2 评论 0原文

我有一行 Ruby 代码,看起来像这样:

words = params[:words].gsub("\n","").gsub("\s","")

由于代码占用了所有空格和换行符并摆脱了它们,是否有更好的方法来执行此操作?只是好奇是否有更好或更短的方法,以防我的代码过于重复。

上面的代码确实对我有用,但我是编程新手,并且希望尽可能以更好/更美观的方式做事。

I have a line of Ruby code that looks something like this:

words = params[:words].gsub("\n","").gsub("\s","")

Is there a better way to do this since the code takes all spaces and newlines and gets rid of them? Just curious if there is a better or shorter way, in the case that I'm being too repetitive in my code.

The above code does work for me, but I'm new to programming and want to do things the better/more aesthetic way if possible.

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

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

发布评论

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

评论(2

殊姿 2024-10-25 10:31:22

实际上,仅使用 \s 来匹配任何空白字符应该有效:

"some\n simple  demo \nstring \n".gsub(/\s/, "")  # => "somesimpledemostring"

actually, using only \s to match any whitespace character should work:

"some\n simple  demo \nstring \n".gsub(/\s/, "")  # => "somesimpledemostring"
菩提树下叶撕阳。 2024-10-25 10:31:22
words = params[:words].delete("\s\n")
words = params[:words].delete("\s\n")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文