标签: python regex
a = "This is some text" b = "This text"
我想比较a中的变量b,即使文本包含两个以上的单词(如
a = "This is another text here" b = "This another here"
即使我比较a中的b应该在python中返回true
条件:True ==找到b中的所有单词,顺序相同,顺序为a。 在上述示例中,单词的顺序必须相同,且大小写相同。
True
b
a