「Python」符号^で文字を否定で指定するサンプル
構文
[^Y] Y以外の文字を指定
サンプルコード
# coding: utf-8 import re x = "[^Y]" res = re.findall(x,'KFC') if res: print(res[0]) print(res[1]) else: print(res)
結果
K
F
Coding Changes the World
構文
[^Y] Y以外の文字を指定
サンプルコード
# coding: utf-8 import re x = "[^Y]" res = re.findall(x,'KFC') if res: print(res[0]) print(res[1]) else: print(res)
結果
K
F