Javaでいうこれは
String.format("this is %s format string", "a")
// => this is a format string
Kotlinではこう書く。
"this is %s format string".format("a")
// => this is a format string
Go to list of users who liked
More than 5 years have passed since last update.
Javaでいうこれは
String.format("this is %s format string", "a")
// => this is a format string
Kotlinではこう書く。
"this is %s format string".format("a")
// => this is a format string
Register as a new user and use Qiita more conveniently
Go to list of users who liked