notepad ++如何删除多符号逗号,点,感叹号

时间:2017-12-19 06:20:30

标签: replace notepad++ symbols removeall

实施例

  • 给我发电子邮件,新!回复......到我的帖子
  • 通过电子邮件向我发送新帖子回复

我在谷歌搜索多次。我可以逐个替换它,但我想要一个公式删除所有符号一次。 我尝试搜索并替换为(。|,|?|!| ... |),但它不起作用。

2 个答案:

答案 0 :(得分:0)

你必须转义特殊字符并选择选项"正则表达式"在替换窗口中。这是你的正则表达式。

\.|\?|!|\,

enter image description here

答案 1 :(得分:0)

如果要删除所有pnctuation标记,请使用unicode属性from cartopy.io import shapereader import numpy as np import geopandas import matplotlib.pyplot as plt import cartopy.crs as ccrs # get natural earth data (http://www.naturalearthdata.com/) # get country borders resolution = '10m' category = 'cultural' name = 'admin_0_countries' shpfilename = shapereader.natural_earth(resolution, category, name) # read the shapefile using geopandas df = geopandas.read_file(shpfilename) # read the german borders poly = df.loc[df['ADMIN'] == 'Germany']['geometry'].values[0] ax = plt.axes(projection=ccrs.PlateCarree()) ax.add_geometries(poly, crs=ccrs.PlateCarree(), facecolor='none', edgecolor='0.5') ax.set_extent([5, 16, 46.5, 56], crs=ccrs.PlateCarree())

  • 控制 + ħ
  • 找到:\p{Punct}
  • 替换为:\p{Punct}+
  • 检查环绕
  • 检查正则表达式
  • 全部替换