Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Ada
- C
- Clojure
- C++
- C#
- D
- Dart
- Elixir
- Elixir
- Elixir
- Erlang
- Fortran
- Go
- Go
- Go
- Groovy
- Haskell
- JS
- JS
- Java
- Java
- Java
- Java
- Java
- Java
- Kotlin
- Lisp
- Lua
- Obj-C
- PHP
- PHP
- PHP
- PHP
- Pascal
- Pascal
- Perl
- Perl
- Python
- Ruby
- Rust
- Rust
- Scala
- Scheme
- Smalltalk
- VB
S : String := Integer'Image (I);
(let [s (str i)])
var s = "$i";
s = to_string(i)
Doesn't check if i is an Integer
s = "#{i}"
write (unit=s,fmt=*) i
def s = "$i".toString()
While any of the Java examples works in Groovy, too, you can also use string interpolation like shown here.
String interpolation ("$i") gives you a GString, which in many places can be used as a string because it is a CharSequence. Here, for clarity, the GString is converted to a String using the toString() method.
String interpolation ("$i") gives you a GString, which in many places can be used as a string because it is a CharSequence. Here, for clarity, the GString is converted to a String using the toString() method.
var s = i + "";
String s = "%d".formatted(i);
String s = "" + i;
String s = "";
while (i != 0) {
s = i % 10 + s;
i = i / 10;
}
val s = i.toString()
(setf s (princ-to-string i))
$s = (string)$i;
$s = "{$i}";
$s = "$i";
$s = strval($i);
Str(i,s);
No dependecies on any library.
Should work in all Pascal dialects.
Should work in all Pascal dialects.
my $s = "" . $i;
Perl automatically converts numbers to strings, and strings to numbers, whenever required. The concatenation with the empty string is superfluous, it only indicates programmer intent.
$s = "$i";
Interpolation of variables allows to put them inside a string
s = str(i)
val s = i.toString
(define s (number->string i))
s := i asString.
Dim myInt As Integer = 12345
Console.WriteLine(myInt.ToString)