正規表現を使用してPython 3の文字列を置き換えようとしています。 s1
の文字列を完全に空の文字列に置き換える必要があります。正規表現はPython 3の文字列を置き換えます
s1 = "/* 123 */" # Pattern /* n */ where n can be any integer
s2 = re.sub(r'/*\s*\d+\s*/',"",s1)
print(s2)
出力(実績) - /* 123 */
#何が(予想)
出力を発生した - BLANK