gpt4 book ai didi

groovy - Gradle 字符串替换 - 没有占位符

转载 作者:行者123 更新时间:2023-12-03 09:20:14 24 4
gpt4 key购买 nike

是否可以在占位符/标记的gradle中进行简单的字符串替换
不能使用。

例如:给定 temp.txt替换所有出现的 xxxyyy .

最佳答案

阅读以下文本:

String contents = new File( 'whatever.txt' ).getText( 'UTF-8' ) 

替换文本
contents = contents.replaceAll( 'xxx', 'yyy' )

再把文字写出来
new File( 'replaced.txt' ).write( contents, 'UTF-8' )

您应该能够将它们包装成一个任务并像往常一样调用该任务

关于groovy - Gradle 字符串替换 - 没有占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10532632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com