我正在为Jenkins文件编写一个GROOVY脚本来执行以下操作:
步骤1:读取输入文件info_file.txt
。信息文件的内容如下:
sh> cat info_file.txt
CHIP_DETAILS:1234-A0;1456-B1;2456-B0;3436-D0;4467-C0
步骤2:删除后缀CHIP_DETAILS
等后,将-A0,-B1
存储在数组中。
例如:
Integer[] testArray = ["1234", "1456", "2456" , "3436" , "4467"]
步骤3:按顺序打印数组的元素。例如:
testArray.each {
println "chip num is ${it}"
}
我写了一个小代码来测试CHIP_DETAILS
'键'存在于输入文件中,它正在工作。
但是,我发现很难编写正则表达式来删除后缀(-A0,-B1
等...)并将相应的值存储在数组中。
代码如下:
stage('Read_Params')
{
steps
{
script
{
println ("Let's validate and see whether the "Key:Value" is present in the info_file.txt\n");
if ( new File("$JobPath/Inputparams.txt").text?.contains("CHIPS_DETAILS"))
{
println ("INFO: "Key:Value" is present in the info_file.txt \n");
>>>>> proceed with Step-1, Step-2 and Step-3... <<<<<
}
else
{
println ("WARN: "Key:Value" is NOT present in the info_file.txt \n");
exit 0;
}
}
}
}
提前感谢您的帮助!
答案 0 :(得分:1)
您可以尝试以下内容:
def chipDetails = 'CHIP_DETAILS:1234-A0;1456-B1;2456-B0;3436-D0;4467-C0'
def testArray = ( chipDetails =~ /(?<=^|[:;])\d*(?=[-])/)
assert '1234' == testArray[0]
assert '1456' == testArray[1]
assert '2456' == testArray[2]
assert '3436' == testArray[3]
assert '4467' == testArray[4]
正则表达式确保您尝试捕获的数字位于行的开头或前缀为:或;并以 -
为后缀分隔符之间可以有任意数量的数字。
迭代结果如:
testArray.each{
println it
}