7 lines
104 B
Text
7 lines
104 B
Text
|
|
function numStrIncmt(s) {
|
||
|
|
return fmtstr("%d", toint(s) + 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
spn:1> numStrIncmt("12345")
|
||
|
|
= 12346
|