例如,我想将Hello_1_.Bye转换为Hello [1]. Bye请注意,[1](即括号内的)仅包含数字
我一开始用的是这样的东西,但没有用。
filter {
mutate {
gsub => ["String", "*_\D_.*", "*[\D].*"] //Note that String here could be Hello_1_.Bye, Hello_2_.Bye etc.
}
}
但是得到这个错误
:exception=>#<RegexpError: target of repeat operator is not specified: /*_\D_*/>
谢谢你的帮助
1条答案
按热度按时间yhqotfr81#
我建议使用以下版本:
这里有一个regex demo,显示替换工作正常。