如何减少字符串中的数字?现在我得到了这个:
declare -A arr
while (( $# > 0 )); do
arr["$1"]="$2"
shift 2
done
这个数字并不总是在同一个地方。我无法将数字存储在变量中。
但我的正则表达不正确。
答案 0 :(得分:3)
你几乎得到了它
QString::split(QRegularExpression("(?=[\\{\\},|])|(?<=[\\{\\},|])"))
答案 1 :(得分:0)
使用匹配参数而不是数字
let newId = existingId.replace(/\d+/g, function (match, number) {
return parseInt(match) - 1;
);