在Ruby中,可以使用split
方法來分割字符串。split
方法接受一個(gè)參數(shù),即分隔符。如果沒有提供分隔符,則默認(rèn)使用空格作為分隔符。
以下是一些示例:
str = "Hello World! This is a test."
words = str.split
puts words.inspect
# 輸出: ["Hello", "World!", "This", "is", "a", "test."]
str = "apple,banana,orange"
fruits = str.split(',')
puts fruits.inspect
# 輸出: ["apple", "banana", "orange"]
str = "one,two;three|four"
patterns = str.split(/[,;|]/)
puts patterns.inspect
# 輸出: ["one", "two", "three", "four"]
在這些示例中,我們使用split
方法將字符串分割成數(shù)組。你可以根據(jù)需要更改分隔符。