温馨提示×

Ruby字符串处理怎样去除空白

小樊
81
2024-11-06 03:14:33
栏目: 编程语言

在Ruby中,有多种方法可以用来去除字符串中的空白字符。以下是一些常用的方法:

  1. 使用gsub方法替换空白字符:
str = "  Hello, World!  "
str_without_whitespace = str.gsub(/\s+/, '')
puts str_without_whitespace # 输出 "Hello,World!"

这里,\s+是一个正则表达式,用于匹配一个或多个空白字符(包括空格、制表符和换行符)。gsub方法将所有匹配到的空白字符替换为空字符串(即删除它们)。

  1. 使用strip方法去除字符串首尾的空白字符:
str = "  Hello, World!  "
str_without_whitespace = str.strip
puts str_without_whitespace # 输出 "Hello, World!"

strip方法仅去除字符串首尾的空白字符。如果需要去除字符串中所有空白字符,可以使用第一种方法。

0