我有模式(apple|orange)
但是当我尝试运行模式时,它都匹配下面的每个句子。如果句子只包含模式中的一个字符串,并且句子是否包含orangeapple
或appleorange
两个字符串的串联,如何排除?
apple is not an orange -> should match
orange and apple are fruits -> should match
orange is a fruit -> should not match
orangeapple is not a fruit -> should not match