1

我需要提取 jenkinsfile 参数的前 3 个字符:

string(name: 'DB_Type', defaultValue: 'mysql'  )

我尝试了以下方法,但这不起作用:

prefix=${params.db_type}
prefix=prefix.substring(0,2)

4

1 回答 1

2
params.DB_Type?.substring(0,3)
于 2019-07-23T05:03:37.177 回答