Contents

Convert text numbers to integer (with.Java)

   Feb 24, 2024     3 min read

This is an article about the problem of “Converting text numbers to integers.”

As I solve coding test problems, I look back on the problems I solved and look into different solution methods to learn more.

Let’s look at the problem first.

problem

A nerd who doesn’t like English tries to change numbers written in English into numbers.

When the string numbers are given as a parameter, complete the solution function to return numbers by converting them to an integer.

Restrictions

  • Numbers consist of lowercase letters only.
  • Numbers are a combination of “zero”, “one”, “two”, “three”, “four”, “five”, “six”, “seven”, “eight”, and “nine” without spaces.
  • 1 ≤ length of numbers ≤ 50
  • “zero” cannot be at the beginning of numbers.

Input/Output Example

numbersresult
“onetwothreefourfivesixseveneightnine”123456789
“onefourzerosixseven”14067

My solution to the problem

class Solution {
     public long solution(String numbers) {
         String string_num = numbers
             .replace("zero", "0")
             .replace("one", "1")
             .replace("two", "2")
             .replace("three", "3")
             .replace("four", "4")
             .replace("five", "5")
             .replace("six", "6")
             .replace("seven", "7")
             .replace("eight", "8")
             .replace("nine", "9");

         long answer = Long.parseLong(string_num);
         return answer;
     }
}

Solution explanation

  • Use the replace method on the string numbers to replace numbers in English with the corresponding actual numbers. The replace method replaces the string received as the first argument with the string received as the second argument. In this way, “zero” becomes “0”, “one” becomes “1”, and so on.
  • Since the converted string string_num is an actual numeric string, it is converted to a long type number through the Long.parseLong method. This converted long type number is returned as the final result.
  • This method converts numbers expressed in English into actual numbers. For example, when the input “onetwothree” comes in, it is converted to “123” and then converted to the number 123 and returned.
  • The judgment is based on the ASCII code value for each character. In the ASCII code, 65 to 90 represents uppercase letters A to Z. Therefore, characters that fall within this range are converted to lowercase letters, and characters that do not (i.e. lowercase letters) are converted to uppercase letters.
  • The reason for using the char type is that it is suitable for determining the case of letters using ASCII codes. Since the char type can be converted to a number, you can use ASCII code in this way. On the other hand, the String type is a value for the entire string, so it is impossible to use ASCII code directly.
  • Methods such as toUpperCase and toLowerCase are methods of the String class, so they can only be used on String objects. Since the char type does not have a method like this, it is used after converting the ch type to the String type for case conversion. This conversion is done via Character.toString(ch).