Kotlin

書式
文字列.split(“,”)
構文
fun CharSequence.split(
vararg delimiters: String,
ignoreCase: B ...

Kotlin

書式
val オブジェクト名 = クラス名(var 引数名:データの型)
使用例

//クラスの定義class Person(var userid: String, var addr: String, var ye ...

Kotlin

書式
val オブジェクト名 = クラス名()
使用例

//Personクラスの定義class Person { var stuno = "1001" var school = "uu" var year = 1 ...

Kotlin

書式
class クラス名{//some code}
使用例

//Studentクラスの定義class Student { var stuNo = "S1002" var model = "ABC" var ye ...

Kotlin

書式
Regex(“.文字列$”)
サンプルコード

fun main() {//末尾の文字列を指定 val ptn = Regex(".ST$") val cftA = "3ST" val ...

Kotlin

書式
Regex(“^{3}-{4}$”)
使用例

fun main() {//郵便番号数値3桁-4桁 val fmt = Regex("^{3}-{4}$") println("resu ...

Kotlin

書式
Regex(“{2,}-“)
使用例

fun main() { val fmt = Regex("{2,}-") println("result: "+"45-".matches(f ...

Kotlin

書式
変数名.isEmpty()
使用例

fun main() {//空文字 val cftA = "" if (cftA.isEmpty()) { println("空白文字です 111") }//空文字でない ...

Kotlin

使用例

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 =(表現式)
使用例

fun main() { val sumLambda: (Int, Int) -> Int = {x,y -> x* ...

Kotlin

書式
Files.createFile(ファイルパス)
使用例

import java.nio.file.Filesimport java.nio.file.Pathsimport java.io.IOExcep ...

Kotlin

書式
public static Path move(Path source,Path target,CopyOption… options)throws IOException
使用例

import ...

Kotlin

書式
public static Path copy(Path source,Path target,CopyOption… options) throws IOException
使用例

impor ...

Kotlin

書式
public static boolean exists(Path path,LinkOption… options)
public static boolean notExists(Path pat ...

Kotlin

書式
public static String join(CharSequence delimiter, CharSequence… elements)
使用例

import java.lang.St ...

Kotlin

書式
fun append(value: Char): StringBuilder
fun append(value: String): StringBuilder
fun append(value: Int) ...

Kotlin

書式
listOf(xxx).sorted()
使用例

fun main(args: Array<String>) { val lstA = listOf(9,56,45,122,11).sorted ...