简体   繁体   中英

Ruby regex to remove / from string

I currently have a string to remove spaces from strings, however I now need to remove forward slashes from the string too. I'm not very good with regexes and could use some help thanks. This is the current regex I have: gsub(/\\s+/, "") how do I modify this to remove / ? I've played around in the console and can't seem to get it.

You have to escape the forward slash because it's a special character. Something like this:

s = "This   is a line / string"
s.gsub(/[\s\/]/, '') # => "Thisisalinestring"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM