StackOverflow 文件 pandas 教程 字串操作 正規表示式 正規表示式 Created: November-22, 2018 # Extract strings with a specific regex df= df['col_name'].str.extract[r'[Aa-Zz]'] # Replace strings within a regex df['col_name'].str.replace('Replace this', 'With this') 有關如何使用正規表示式匹配字串的資訊,請參閱正規表示式入門 。 字串的大寫字串操作