Last active
August 29, 2015 14:06
-
-
Save tizki/fcd625e30686f4656bd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//The following code replaces a value of a property in a property file, while keeping comments if exist | |
def fileName = 'test.properties' | |
def propertyKey = 'key' | |
def myFile = new File(fileName) | |
def fileText = myFile.text | |
matcher = fileText=~propertyKey+"=(.*)" | |
result = matcher.replaceFirst(propertyKey+'=new value') | |
myFile.withWriter { myFile << result } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment