在文本行之间循环时,最简单的方法(大多数是ruby)是什么(或类似的)if-else语句来检查字符串是否是单个单词?
def check_if_single_word(string)
# code here
end
s1 = "two words"
s2 = "hello"
check_if_single_word(s1) -> false
check_if_single_word(s2) -> true
最佳答案
既然你在问“最红宝石”的方法,我会把这个方法重命名为single_word?
一种方法是检查是否存在空格字符。
def single_word?(string)
!string.strip.include? " "
end
但是,如果要允许符合单词定义的特定字符集(可能包括撇号和连字符),请使用regex:
def single_word?(string)
string.scan(/[\w'-]+/).length == 1
end
关于ruby - 检查字符串是否包含一个或多个单词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19212968/