在Ruby中,可以使用split
方法来分割字符串。split
方法接受一个参数,即分隔符。如果没有提供分隔符,则默认使用空格作为分隔符。
以下是一些示例:
- 使用空格作为分隔符:
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
方法将字符串分割成数组。你可以根据需要更改分隔符。