I know that
parseInt(myString, 10) //"never forget ze radix"
will return a number if the first characters in the string are numerical, but how can I do this in javascript if I have a string like "column5" and want to increment it to the next one ("column6") ?
edit: number of digits at the end of the string is variable