About 212,000 results
Open links in new tab
  1. Java - Convert integer to string - Stack Overflow

    Returns a String object representing the specified integer. The argument is converted to signed decimal representation and returned as a string, exactly as if the argument and radix 10 were …

  2. How do I convert a String to an int in Java? - Stack Overflow

    Integer x = Integer.valueOf(str); // or int y = Integer.parseInt(str); There is a slight difference between these methods: valueOf returns a new or cached instance of java.lang.Integer …

  3. How can I convert an int to a string in C? - Stack Overflow

    How do you convert an int (integer) to a string? I'm trying to make a function that converts the data of a struct into a string to save it in a file.

  4. Convert integer to string in Python - Stack Overflow

    Jun 23, 2019 · How do I convert an integer to a string? 42 "42" For the reverse, see How do I parse a string to a float or int?. Floats can be handled similarly, but handling the …

  5. How Do I Convert an Integer to a String in Excel VBA?

    Jul 21, 2012 · How do I convert the integer value "45" into the string value "45" in Excel VBA?

  6. How to convert an integer value to string? - Stack Overflow

    Jan 30, 2011 · How do I convert an integer variable to a string variable in Java?

  7. sql - Convert integer to string in PostgreSQL - Stack Overflow

    In my case, I found this thread because I actually had to convert an integer to a string - not for comparison but for using inside an aggregate function that would fail, if the argument was not …

  8. How can I convert int to string in C++? - Stack Overflow

    2873 C++11 introduces std::stoi (and variants for each numeric type) and std::to_string, the counterparts of the C atoi and itoa but expressed in term of std::string.

  9. Integer.toString (int i) vs String.valueOf (int i) in Java

    Feb 2, 2023 · And don't forget Integer.toString(int i, int radix) that will convert to strings of bases other than 10.

  10. java - Integer to String conversion methods - Stack Overflow

    Sep 27, 2010 · What are the alternative methods for converting and integer to a string?