84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
最近做个代码解析工具出现了问题,就是正则去掉代码中的单行和多行注释,但是对于http://这样的内容会被去掉了,然后代码无法执行,想问下,应该怎么过滤点这种呢?
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
正则不是万能的,这个是语法分析的范畴
如果引擎支持的话,可以试试预匹配(或者叫零宽断言、前向匹配什么的,反正都能查到)。
另一种思路是,先把 http:// 替换成某个不太可能冲突的占位符,例如 http:::,再去掉注释以后再替换回来。
正则不是万能的,这个是语法分析的范畴
如果引擎支持的话,可以试试预匹配(或者叫零宽断言、前向匹配什么的,反正都能查到)。
另一种思路是,先把 http:// 替换成某个不太可能冲突的占位符,例如 http:::,再去掉注释以后再替换回来。