标签:int port main cas 忽略 去掉空格 esc ace 查找
对于字符串的问题,我更喜欢用python,这次我的采用的python和正则表达式。结果啊,学校的垃圾oj老是通不过,结果我到另外一个oj就通过了!心累!
""" 题目描述 给定一个短字符串(不含空格),再给定若干字符串,在这些字符串中删除所含有的短字符串。 输入 输入只有1组数据。 输入一个短字符串(不含空格),再输入若干字符串直到文件结束为止。 输出 删除输入的短字符串(不区分大小写)并去掉空格,输出 """
import re if __name__ == "__main__": string1 = input() reg = re.compile(re.escape(string1),re.IGNORECASE)# 匹配规则,忽略大小写 while True: try: data = input() except EOFError:#到达文件末尾 break else: result = reg.sub("",data) result = result.replace(" ","") print(result)
# 明天复习一下kmp算法,再用c++撸一遍
标签:int port main cas 忽略 去掉空格 esc ace 查找
原文地址:https://www.cnblogs.com/jielearscoding/p/13057676.html