修改字符串末尾的整数

时间:2013-11-02 00:00:45

标签: javascript regex string

我需要你的协助,

我需要的是一个javscript函数,可以完成以下两件事之一:

首先,如果给出一个字符串,即。调用时var x = "filenumber"函数将处理字符串并在其末尾添加-2,如果字符串末尾不存在-2,则生成var x = "filenumber-2"

其次,如果给定值var x is already = "filenumber-2"然后取字符串末尾的数字并将其递增1,结果为var x = "filenumber-3".,那么第四次递增数字后,如果再次调用该函数。

这是概念标记:

<DOCYTPE HTML>
<html>
<head>
<script type="text/javascript">
function test(){

var x = document.getElementById('input').value

1.) if x doesnt already have the -2 at the end of the string then add it:

document.getElementById('output').value = x + "-2"


2.) else, the function recognizes that it does and the result of the output is

x-2 + 1

}
</script>
</head>
<body>
<input type="text" id="input"/>
<br>
<input type="text" id="output"/>
<br>
<input type="button" onclick="test()" value="test"/>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

短暂的甜蜜:

x = 'filenumber-4';
x = x.replace(/^(.+?)(-\d+)?$/, function(a,b,c) { return c ? b+(c-1) : a+'-2'; } );