ruby

Ruby字符串处理如何分割字符串

小樊
81
2024-11-06 03:17:34
栏目: 编程语言

在Ruby中,可以使用split方法来分割字符串。split方法接受一个参数,即分隔符。如果没有提供分隔符,则默认使用空格作为分隔符。

以下是一些示例:

  1. 使用空格作为分隔符:
str = "Hello World! This is a test."
words = str.split
puts words.inspect
# 输出: ["Hello", "World!", "This", "is", "a", "test."]
  1. 使用逗号作为分隔符:
str = "apple,banana,orange"
fruits = str.split(',')
puts fruits.inspect
# 输出: ["apple", "banana", "orange"]
  1. 使用正则表达式作为分隔符:
str = "one,two;three|four"
patterns = str.split(/[,;|]/)
puts patterns.inspect
# 输出: ["one", "two", "three", "four"]

在这些示例中,我们使用split方法将字符串分割成数组。你可以根据需要更改分隔符。

0
看了该问题的人还看了