if iam using this
println("${it1}##Blockedby:${it2}.dbname:${it3}.Login:${it5}.Batch:${it6}.cmd:${it7}.Program:${it8}###text=${it9}")
iam getting output under these coloumns
wildvalue wildvalue2 description
You don’t have the double hash tags in the right place. It’s wildvalue##wildalias##description##wildvalue2##properties.
Your it9 has equals signs in it. You’ll either have to remove the equals signs using .replaceAll(“=”,” “) or not include it9 in the properties. It works fine as the description because equals signs are allowed in the description. But they are not allowed in the values or names of properties. Same goes for &.