你能帮助我使用地形来实现以下场景吗?我需要在字符串值中的每个特殊字符前面加//。
示例:mysplchr="test O'riel*abc"
必须更改为"test O//'riel//*abc"
感谢
不确定这里的问题是什么,但如果需要,可以直接写入或自动更改原始字符串:
variable "mysplchr" {
default = "test O//'riel//*abc"
}
output "test1" {
value = var.mysplchr
}
# or to do it automatically for
# the original string
output "test2" {
value = replace("test O'riel*abc", "/(['\*])/", "//$1")
}
结果是:
test1 = test O//'riel//*abc
test2 = test O//'riel//*abc