String.valueOfInt()

Signature

String valueOfInt (int i)

Domain

action, condition

Description

Returns a String representation of the int passed in.

Parameters

NameTypeDescription
iintAn int to get the value of (convert to String).

Returns

TypeDescription
StringA String representation of the int passed in.

Cautions

none

Example


String result = String.valueOfInt (345);

Result is:
result contains: "345"