Python代码
str= "bcd" word = "abcd1" if pattern = re.search(str, word): print pattern.group(1)
我想在一个单词中搜索"bdc"..我该怎么办?
python
python ×1