我有以下代码,我想用正则表达式替换括号内的数字。
有人能帮助我吗?
<div class="col-lg-4">
<label for="inc[1].a">Counterparty</label>
<input type="text" class="form-control" id="inc[1].a"
name="inc[1].a" placeholder="Enter Counterparty">
</div>
我知道如何获取字符串,我只想更换数字。
例如:我想替换来自 inc 1。a 的数字1,以获得 inc [0] .a 。
提示:我认为此页面可能会有所帮助。 https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/replace
以下是尝试替换:fiddle
答案 0 :(得分:1)
你在几个地方做错了:
/.../g
)现在它working