String
Deprecated
Warning since 1.4
Error since 1.5
Use CharArray.concatToString() instead
Replace with
chars.concatToString()
Converts the characters in the specified array to a string.
Since Kotlin
1.2Deprecated
Warning since 1.4
Error since 1.5
Use CharArray.concatToString(startIndex, endIndex) instead
Replace with
chars.concatToString(offset, offset + length)
Converts the characters from a portion of the specified array to a string.
Since Kotlin
1.2Throws
Converts the data from a portion of the specified array of bytes to characters using the specified character set and returns the conversion result as a string.
Parameters
the source array for the conversion.
the offset in the array of the data to be converted.
the number of bytes to be converted.
the character set to use.
Converts the data from the specified array of bytes to characters using the specified character set and returns the conversion result as a string.
Converts the data from a portion of the specified array of bytes to characters using the UTF-8 character set and returns the conversion result as a string.
Parameters
the source array for the conversion.
the offset in the array of the data to be converted.
the number of bytes to be converted.
Converts the data from the specified array of bytes to characters using the UTF-8 character set and returns the conversion result as a string.
Converts the code points from a portion of the specified Unicode code point array to a string.
Converts the contents of the specified StringBuffer to a string.
Converts the contents of the specified StringBuilder to a string.
Converts the characters in the specified array to a string.
Converts the characters from a portion of the specified array to a string.
Throws
Deprecated
Warning since 1.4
Error since 1.5
Use CharArray.concatToString() instead
Replace with
chars.concatToString()
Converts the characters in the specified array to a string.
Since Kotlin
1.2Deprecated
Warning since 1.4
Error since 1.5
Use CharArray.concatToString(startIndex, endIndex) instead
Replace with
chars.concatToString(offset, offset + length)
Converts the characters from a portion of the specified array to a string.
Since Kotlin
1.2Throws
Deprecated
Warning since 1.4
Error since 1.5
Use CharArray.concatToString() instead
Replace with
chars.concatToString()
Converts the characters in the specified array to a string.
Deprecated
Warning since 1.4
Error since 1.5
Use CharArray.concatToString(startIndex, endIndex) instead
Replace with
chars.concatToString(offset, offset + length)
Converts the characters from a portion of the specified array to a string.