我是编程初学者,从 ruby 开始。现在我尝试搜索文档并查看是否包含患者。我用这段代码实现了这个任务:
@patients.each do |patient|
if document.include? patient.nachnahme || document.include? patient.vorname
arr << a
end
end
但不知何故我得到了错误:
syntax error, unexpected tIDENTIFIER, expecting keyword_then or ';' or '\n'
if document.include? patient.nachnahme || document.include? patient.vorname
所以我做错了什么?以及如何定义我的 ruby 代码仅在以下情况下运行:
document.include? patient.nachnahme || document.include? patient.vorname
两种说法都是真的?