1
NTEST DESAの\とをRdestを交換するtriyingてる
を交換するパターンとscript.dslを持って
ジェンキンス2にjobDslで働いていますここに私の例
example="choiceListText('rDEST')"
print ("example is ")
println (example)
exreplace = example.replaceAll("rDEST","desa\ntest")
print ("exreplace is ")
println (exreplace)
コード結果は
example is choiceListText('rDEST')
exreplace is choiceListText('desa
test')
です
は、私はトリプル引用されたシングル、ダブル引用し、トリプルには二重引用符で囲まれたが、STILカントはそれを成し遂げる、シングル引用してみた
exreplace is choiceListText('desa\ntest')
を取得するために期待しています!
これは実行可能でもありません。 – Opal