ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

原创:高级查找替换函数,支持通配符,你能看懂吗!

[复制链接]

TA的精华主题

TA的得分主题

发表于 2003-6-7 03:15 | 显示全部楼层 |阅读模式
好好学习like这个功能,实在大强大了,可以解决你的问题 下面有个例子,在字符串中查找日期 Function FindStr(strObj As String, strSou As String, strLen As Integer) As String Dim i As Integer For i = 1 To Len(strSou) FindStr = Mid(strSou, i, strLen) If FindStr Like strObj Then Exit Function Next i End Function Sub 测试() dim s as string s="124ewgterh124ewgterh 2003-02-03 wdqwfefwewg" MsgBox FindStr("####-##-##", s, 10) End Sub 这个功能是一个人提出的,好像没人回答,上面s字符中的日期是合法日期都可找到,不信 试试,和位置无关,这是一个版本,更强的我在整理。 Function FindStrPro(strObj As String, strSou As String, strLen As Integer) As String Dim s(3) As String Dim l(3) As Integer s(3) = "*" & strObj & "*" If strSou Like s(3) Then Do s(0) = strSou l(0) = Len(s(0)) l(1) = Int(l(0) * 0.5 + 0.5) l(2) = l(0) - l(1) If l(2) > strLen Then s(1) = Left(s(0), l(1)) s(2) = Right(s(0), l(2)) If s(1) Like s(3) Then strSou = s(1) ElseIf s(2) Like s(3) Then strSou = s(2) Else strSou = Mid(s(0), l(1) - strLen + 1, strLen * 2 - 2) Exit Do End If Else Exit Do End If Loop FindStrPro = FindStr(strObj, strSou, strLen) Else FindStrPro = "" End If End Function 这个功能是用来在大字符串查找用的。字符串是定长的,但你可使用通配符。 Rowen 谢谢你看了这个程序,这程序我想了一晚上,本来想写成多次搜索加定位以及不定长字符串,但太复杂了,现在把这个传上去,主要是抛砖引玉,欢引大家讨论和扩展功能,另我写的大多是原创(用VBA大约8 year,就是零零碎碎,没形成风格),希望大家好好看看,提出讨论应该有用的,否则我没兴趣整理以前写的东东了,Hi!
[此贴子已经被作者于2003-6-9 22:21:41编辑过]

TA的精华主题

TA的得分主题

发表于 2003-6-7 08:18 | 显示全部楼层
不错, 建议整理成一篇文章发给 KEVIN 放到菜园原创区.

TA的精华主题

TA的得分主题

 楼主| 发表于 2003-6-8 01:48 | 显示全部楼层
补充功能,加上定位功能 Private Function FindStrPos(strObj As String, ByVal strSou As String, strLen As Integer) As Integer Dim s1 As String Dim s2 As String s1 = strSou s2 = FindStrPro(strObj, strSou, strLen) If s2 <> "" Then FindStrPos = InStr(s1, s2) Else FindStrPos = 0 End If End Function

TA的精华主题

TA的得分主题

 楼主| 发表于 2003-6-8 01:55 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
加上新功能,替换和多次搜索功能,写了一天,累,不知对大家有没有用,主要用于数据分析,可以开发增强Excel查找和替换功能(主要没有模糊查找功能)。 Public Function ReplaceStr(strObj As String, ByVal strSou As String, strReplace As String, strLen As Integer) As String Dim s As String Dim l As Integer ReplaceStr = strSou l = FindStrPos(strObj, strSou, strLen) If l > 0 Then strSou = ReplaceStr s = FindStrPro(strObj, strSou, strLen) ReplaceStr = Replace(ReplaceStr, s, strReplace) End If End Function Public Function FindStrPosEx(strObj As String, strSou As String, strLen As Integer, Optional ByRef iMode As Integer = 1) As Integer Dim s As String Dim l As Integer s = "" For l = 1 To strLen s = s & " " Next l For l = 1 To iMode FindStrPosEx = FindStrPos(strObj, strSou, strLen) strSou = ReplaceStr(strObj, strSou, s, strLen) Next End Function

TA的精华主题

TA的得分主题

 楼主| 发表于 2003-6-8 23:02 | 显示全部楼层
指定查找第几满足条件字符串,iMode是次数 Private Function FindStrAdv(strObj As String, strSou As String, strLen As Integer, Optional ByRef iMode As Integer = 1) As String Dim l As Integer FindStrAdv = strSou l = FindStrPosEx(strObj, strSou, strLen, iMode) If l > 0 Then FindStrAdv = Mid(FindStrAdv, l, strLen) Else FindStrAdv = "" End If End Function
[此贴子已经被作者于2003-6-8 23:07:13编辑过]

TA的精华主题

TA的得分主题

发表于 2003-6-9 16:42 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2005-8-21 09:47 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2006-11-21 11:55 | 显示全部楼层
晕.....太强啦.  EXCEL用成这样. 服.

TA的精华主题

TA的得分主题

发表于 2006-11-21 13:16 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
已收藏,感谢共享!支持一下!

TA的精华主题

TA的得分主题

发表于 2007-3-5 02:16 | 显示全部楼层
VBA中“like”查询的使用,好东西
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-16 06:56 , Processed in 0.043358 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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