ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 8788|回复: 7

[求助] 有没有办法删除括号外的内容

[复制链接]

TA的精华主题

TA的得分主题

发表于 2012-3-7 15:59 | 显示全部楼层 |阅读模式
本帖最后由 godhawk 于 2012-3-7 16:01 编辑

有一个word文件,大概2mb大,里面都是中文和英文混排,词和词混排

类似这样:


  1. Best wishes for the year to come!恭贺新禧!【Good luck 】in the year ahead!祝吉星高照!May you come into a【 good 】fortune!恭喜发财!Live long and proper!
  2. 多福多寿!May many【 fortunes find 】their way to you!祝财运亨通!I want to wish you longevity and health!愿你健康长寿!Take good care of 【yourself 】in the year ahead.请多保重!Wishing you many future successes.祝你今后获得更大成就。
复制代码

需要把除了【】括号内的英文之外,其他所有的英文都是删掉,中文保留不变

我的写法是:

    Dim RngSel As Range
    Set RngSel = Selection.Range
    RngSel.Find.ClearFormatting
    RngSel.Find.Replacement.ClearFormatting
    RngSel.Find.Execute FindText:="^$", Forward:=True, Wrap:=wdFindStop, ReplaceWith:="", MatchWildcards:=False, Replace:=wdReplaceAll

但是这样的话,会把【】括号内的英文也一起删掉了,所以不可行……

请问有什么办法可以做出正确的筛选,只删除括号外的英文呢?

TA的精华主题

TA的得分主题

发表于 2012-3-7 16:37 | 显示全部楼层
可先用特定格式(如突出显示)对括号内的部分进行标记,然后再查找处理不是该特定格式的部分,最后删除该特定格式。

TA的精华主题

TA的得分主题

发表于 2012-3-7 16:47 | 显示全部楼层
只知道 查找^$就可以删除所有的英文字符
使用通配符\[*\]可以删除被方括号包围的所有字符

期待高手的答案

TA的精华主题

TA的得分主题

发表于 2012-3-8 09:28 | 显示全部楼层
可以用查找替换这样试试,分两步:
一、查找“【* 】”替换为空(选通配符,格式字体为红色)
二、查找“^$”(不选通配符,格式字体颜色为自动)替换为空

TA的精华主题

TA的得分主题

发表于 2012-3-8 13:20 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Sub 有一步可以解决的吗()
With ActiveDocument.Content.Find
.Text = "【[A-Z,a-z ]@】"
.Forward = True
.MatchWildcards = True
Do While .Execute
.Parent.Font.Color = vbRed
Loop
End With
With ActiveDocument.Content.Find
.Text = "[A-Z,a-z .\!]@"
.Forward = False
.MatchWildcards = True
Do While .Execute
If .Parent.Font.Color <> vbRed Then .Parent.Delete
Selection.Collapse direction:=wdCollapseEnd
Loop
End With
ActiveDocument.Range.Font.Color = vbBlack
End Sub

TA的精华主题

TA的得分主题

发表于 2012-3-8 15:49 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
其实只用查找替换的方法来处理是有问题的,会有错漏。因英文部分除字母外,可能还有空格、标点、数字等,而中文部分也可能有字母。
可试试如下代码,是对每个句子单位进行判断,假如当中有中文字就不删。如果文本断句规范,错漏会较少,当然,处理速度要慢些:
  1. Sub test()
  2.     Dim sRange As Range
  3.     Dim i As Long
  4.     For Each sRange In ActiveDocument.Content.Sentences
  5.         With sRange
  6.             If .Text Like "*[一-龥]*" = False Then
  7.                 i = InStr(.Text, "【")
  8.                 If i = 0 Then
  9.                     If InStr(.Text, Chr(13)) Then .End = .End - 1
  10.                     .Delete
  11.                 Else
  12.                     .End = .Start + i - 1
  13.                     If .Start < .End Then .Delete
  14.                     .Expand wdSentence
  15.                     .Start = .Start + InStr(.Text, "】")
  16.                     If InStr(.Text, Chr(13)) Then .End = .End - 1
  17.                     If .Start < .End Then .Delete
  18.                 End If
  19.             End If
  20.         End With
  21.     Next
  22. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-3-12 15:04 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
楼上各位朋友提供的办法,都很不错,非常感谢,问题已经成功解决{:soso_e113:}

TA的精华主题

TA的得分主题

发表于 2019-9-4 16:06 | 显示全部楼层
.Pattern = "(【[^【】]*】|[\u4e00-\u9fa5]+[^\w\u4e00-\u9fa5【】]*)|[\s\S]"

  1. Sub test()
  2.     s$ = "Best wishes for the year to come!恭贺新禧!【Good luck 】in the year ahead!祝吉星高照!May you come into a【 good 】fortune!恭喜发财!Live long and proper!" & vbCrLf _
  3.         & "多福多寿!May many【 fortunes find 】their way to you!祝财运亨通!I want to wish you longevity and health!愿你健康长寿!Take good care of 【yourself 】in the year ahead.请多保重!Wishing you many future successes.祝你今后获得更大成就。"
  4.     With CreateObject("vbscript.regexp")
  5.         .Global = True
  6.         .Pattern = "(【[^【】]*】|[\u4e00-\u9fa5]+[^\w\u4e00-\u9fa5【】]*)|[\s\S]"
  7.         s = .Replace(s, "$1")
  8.         MsgBox s
  9.     End With
  10. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-28 12:48 , Processed in 0.056998 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表