正則表達式$與\Z的區別
ma = re.match(r'[\w]@163.com$','[email protected]')
與下面的寫法一樣嗎
ma = re.match(r'[\w]@163.com\Z','[email protected]')
ma = re.match(r'[\w]@163.com$','[email protected]')
與下面的寫法一樣嗎
ma = re.match(r'[\w]@163.com\Z','[email protected]')
2017-04-09
舉報
2017-04-11
多行問題