MS Word - 查找所有不在句号之后的双空格
MS Word - find all double spaces NOT after period
我如何查找并替换所有在单词中没有出现在句点后的双 space?
我有一份文档(100 多页),其中时不时会有这样的句子
这个[space]是[space]另一个[space][space]word[space]in[space][space]a[space]句。
我想轻松删除那两个双 space。到目前为止,使用通配符,我已经能够 select 它们并且我会用单个 space 替换,但是 "find" 找到单词的方式,它将包括最后一个字母两个 space 之前的单词。这是查找通配符搜索:
([!. ])[ ]{2,}
但是,在上面的例句中,它会突出显示 "r[space][space]" 。我如何用两个 space 替换它?使用替换
[space]
将从该词中删除 "r"。我只想找到两个 space 并将其替换为一个
感谢任何想法!
我认为您需要找到 "([!.])[ ]{2}"
并替换为 " "
(没有双引号)。
*Input*: "This is another word in a sentence. There is another one here."
*Output*: "This is another word in a sentence. There is another one here."
我如何查找并替换所有在单词中没有出现在句点后的双 space?
我有一份文档(100 多页),其中时不时会有这样的句子
这个[space]是[space]另一个[space][space]word[space]in[space][space]a[space]句。
我想轻松删除那两个双 space。到目前为止,使用通配符,我已经能够 select 它们并且我会用单个 space 替换,但是 "find" 找到单词的方式,它将包括最后一个字母两个 space 之前的单词。这是查找通配符搜索:
([!. ])[ ]{2,}
但是,在上面的例句中,它会突出显示 "r[space][space]" 。我如何用两个 space 替换它?使用替换
[space]
将从该词中删除 "r"。我只想找到两个 space 并将其替换为一个
感谢任何想法!
我认为您需要找到 "([!.])[ ]{2}"
并替换为 " "
(没有双引号)。
*Input*: "This is another word in a sentence. There is another one here."
*Output*: "This is another word in a sentence. There is another one here."