会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
StationaryTraveller's Blog
博客园
新随笔
联系
订阅
管理
2021年7月13日
字符串匹配通配符"*、?"
摘要: bool IsMatch(CString s, CString p) { int j = 0; for (int i = 0, last_p = 0, s_start = 0; i < s.GetLength();) { if (j < p.GetLength() && (s[i] == p[j]
阅读全文
posted @ 2021-07-13 12:45 StationaryTraveller
阅读(588)
评论(0)
推荐(0)
公告