-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring-incrementer.js
More file actions
37 lines (25 loc) · 827 Bytes
/
string-incrementer.js
File metadata and controls
37 lines (25 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Your job is to write a function which increments a string, to create a new string.
If the string already ends with a number, the number should be incremented by 1.
If the string does not end with a number. the number 1 should be appended to the new string.
Examples:
foo -> foo1
foobar23 -> foobar24
foo0042 -> foo0043
foo9 -> foo10
foo099 -> foo100
Attention: If the number has leading zeros the amount of digits should be considered.
*/
function incrementString (strng) {
let arr = strng.split('')
let chars = arr.filter(x => isNaN(x))
let nums = arr.filter(function (item) {
return (parseInt(item) == item)
})
let numsTotal = nums.length
nums = Number(nums.join('')) + 1
while (String(nums).length < numsTotal){
nums = '0' + String(nums)
}
return chars.join('') + nums
}