作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我的名字是 "Master Yoda"
我将如何自动将其转换为小写,并用下划线替换空格......或者只是去掉空格。
所以也许把它变成master_yoda
或 masteryoda
我正在寻找最简洁的解决方案。
最佳答案
'Master Yoda'.underscore # => 'master yoda'
'MasterYoda'.underscore # => 'master_yoda'
'Master Yoda'gsub(' ', '') # => 'MasterYoda'
'Master Yoda'.gsub(' ', '').downcase # => 'masteryoda'
关于ruby-on-rails - Ruby on Rails : I want to remove non letters to create a username,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3256942/
我是一名优秀的程序员,十分优秀!