替换regexp匹配的Groovy方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换regexp匹配的Groovy方法相关的知识,希望对你有一定的参考价值。

Example of working with regexp sub-matches via Groovy way
  1. str = "<img width=20 height=20 src='./img/but-small.jpg'/>"
  2. str2 = str.replaceAll(/width=(d+) height=(d+) src='(.+)-small.jpg'/) {ma, wi, he, nm ->
  3. "width=${new Integer(wi) * 2} height=${he.toInteger() * 2} src='$nm-large.jpg'"
  4. }
  5. assert str2 == '<img width=40 height=40 src='./img/but-large.jpg'/>'

以上是关于替换regexp匹配的Groovy方法的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript RegExp对象

如何使用 regexp_replace 仅替换捕获组而不是完整匹配字符串

js中使用replace() 方法的正确姿势

js中字符串的替换

Groovy集合遍历 ( 使用集合的 findAll 方法查找集合中符合匹配条件的所有元素 | 代码示例 )

Groovy集合遍历 ( 使用集合的 findAll 方法查找集合中符合匹配条件的所有元素 | 代码示例 )