-9
我要檢查兩個字符串是否彼此相似.... 例如:蟒蛇正則表達式 - 比賽兩串
string1 = "Select a valid choice. **aaaa** is not one of the available choices."
string2 = "Select a valid choice. **bbbb** is not one of the available choices."
或
string3 = "Ensure this value has at most 30 characters (it has 40 chars)."
string4 = "Ensure this value has at most 60 characters (it has 110 chars)."
如果我比較字符串1至字符串2它應該返回True
,如果我比較string1和string3,它應該返回False
。
複製向我們展示你已經嘗試過的正則表達式。 –
它不會將string1和2設置爲true。 –
不能比較值coz string1包含aaaa並且string2包含bbbb它將返回False而不是True。 –