热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何替换字符串模式?

如何解决《如何替换字符串模式?》经验,为你挑选了1个好方法。

我有这个输入字符串:

Hello  context61 Hi: context:file/  hello context715: context666:file/ foo

我的目标是每次出现的替换(清理)替换context[anything]:为空字符串.这anything部分可能是空的.

输出应如下所示:

Hello  context61 Hi: file/  hello  file/ foo

我尝试过无尽的尝试,但在正则表达方面我只是一个菜鸟.有人可以帮忙吗?



1> Potatoツ..:

试试下面的Vbscript代码:

str="Hello  context61 Hi: context:file/  hello context715: context666:file/ foo"
Set oreg = New RegExp
oreg.IgnoreCase=False
oreg.Global=True
oreg.Pattern="context\d*\:"                'context followed by 0 or more digits followed by colon
'oreg.Pattern="context[a-zA-Z0-9]*?\:"     'or we can have this as pattern which will cover alphabets too
result = oreg.Replace(str,"")              'replaces every matched pattern in the string 'str' by an empty string
MsgBox result

输出:

在此输入图像描述


推荐阅读
author-avatar
NewGuy
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有