替换regexp匹配的Groovy方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换regexp匹配的Groovy方法相关的知识,希望对你有一定的参考价值。
Example of working with regexp sub-matches via Groovy way
str = "<img width=20 height=20 src='./img/but-small.jpg'/>" str2 = str.replaceAll(/width=(d+) height=(d+) src='(.+)-small.jpg'/) {ma, wi, he, nm -> "width=${new Integer(wi) * 2} height=${he.toInteger() * 2} src='$nm-large.jpg'" }
以上是关于替换regexp匹配的Groovy方法的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 regexp_replace 仅替换捕获组而不是完整匹配字符串