「Kotlin」splitで文字列を分割するサンプル
書式
文字列.split(“,”)
構文
fun CharSequence.split(
vararg delimiters: String,
ignoreCase: B ...
「Kotlin」コンストラクタを使うサンプル
書式
val オブジェクト名 = クラス名(var 引数名:データの型)
使用例
[Kotlin]複数オブジェクトのサンプル
書式
val オブジェクト名 = クラス名()
使用例
「Kotlin」クラス(class)とオブジェクト(object)のサンプル
書式
class クラス名{//some code}
使用例
「Kotlin」正規表現で末尾の文字列を指定するサンプル
書式
Regex(“.文字列$”)
サンプルコード
「Kotlin」正規表現で郵便番号を判定するサンプル
書式
Regex(“^{3}-{4}$”)
使用例
「Kotlin」正規表現で数値桁数を判定するサンプル
書式
Regex(“{2,}-“)
使用例
「Kotlin」isEmpty()で空文字をチェックするサンプル
書式
変数名.isEmpty()
使用例
「kotlin」RegExクラスのサンプル
使用例
fun main() { val cft = Regex("RT") println("result1: "+"RBT".matches(cft)); println("result2: "+"RZT".matches( ...「Kotlin」正規表現で先頭の文字列を指定する
サンプルコード
fun main() { val str = Regex("^ST.") println("STC".matches(str)); println("SZC".matches(str));}結果
t ...
「Kotlin入門」ラムダ式のサンプル
書式
val 変数名:(Int,Int) -> Int =(表現式)
使用例
「Kotlin」createFile()で空ファイルを作成するサンプル
書式
Files.createFile(ファイルパス)
使用例
「Kotlin」move()メソッドでフォルダを移動するサンプル
書式
public static Path move(Path source,Path target,CopyOption… options)throws IOException
使用例
「Kotlin」copy()でフォルダをコピーするサンプル
書式
public static Path copy(Path source,Path target,CopyOption… options) throws IOException
使用例
「Kotlin」exists()でフォルダの存在を確認するサンプル
書式
public static boolean exists(Path path,LinkOption… options)
public static boolean notExists(Path pat ...
「Kotlin入門」join()メソッドで指定文字列を結合するサンプル
書式
public static String join(CharSequence delimiter, CharSequence… elements)
使用例
「Kotlin」StringBuilderのappend()メソッドでint,string,char文字列を結合するサンプル
書式
fun append(value: Char): StringBuilder
fun append(value: String): StringBuilder
fun append(value: Int) ...
「Kotlin入門」sorted()でListの要素をソートする方法
書式
listOf(xxx).sorted()
使用例