使用地形转义字符串中的特殊字符



你能帮助我使用地形来实现以下场景吗?我需要在字符串值中的每个特殊字符前面加//。

示例: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

相关内容

  • 没有找到相关文章

最新更新