Contents包含从文件中读取的字符串。我想要做的是用组和换行符替换捕获组。但我不知道如何。
这有效
map.on('moveend', function() {
map.getBounds()
//erase the features you had on the map
//Then load on the map only the features with coordinates inside the Bounging Box.
}
但这不是
contents=$(echo $contents | sed -e 's|/$(#.*)\n||g')
这也不是
contents=$(echo $contents | sed -e 's|/$(#.*)\n|\1\n|g')
ERROR: sed: -e expression #1, char 18: invalid reference \1 on `s' command's RHS
答案 0 :(得分:0)
如果内容是多行$content
必须在双引号之间以避免拆分:$
在正则表达式中具有特殊含义它是行结束锚,必须进行转义。必须对组括号进行转义(-r
扩展正则表达式除外)。另外\n
不匹配$
可以替代使用。
content=$(echo "$content"|sed -e 's|/\$\(#.*\)$|\1|g')