Kotlin String

string_in_kotlin

What is String in kotlin? In Kotlin, strings are represented by the String class, which is immutable. This means that once a String object is created, its value cannot be changed. Strings can be created using string literals enclosed in double quotes (“…”) or triple quotes (“””…”””) for raw strings. How to Create An String […]