Ruby .gsub 如何缩短进行类似替换的代码行
我有一行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,仅使用
\s
来匹配任何空白字符应该有效:actually, using only
\s
to match any whitespace character should work: