「Java」startsWith()とendsWith()で文字列の始まり、終わりを確認する方法
説明
1.public boolean startsWith(String prefix)
この文字列が、指定された接頭辞で始まるかどうかを判定します。
パラメータ:prefix – 接頭辞。
2.public boolean endsWith(String suffix)
この文字列が、指定された接尾辞で終るかどうかを判定します。
Javaコード
package com.arkgame.study; public class EndsWithDemo { public static void main(String[] args) { String cft = "This is a csv sample"; // 指定された接頭辞で始まるかどうかを判定します。 if (cft.startsWith("This")) { System.out.println("指定の文字列(This)が前方一致しました\n"); } else { System.out.println("指定の文字列(This)が前方一致しませんでした\n"); } // 指定された接尾辞で終るかどうかを判定します。 if (cft.endsWith("sample")) { System.out.println("指定の文字列(sample)が後方一致しました"); } else { System.out.println("指定の文字列(sample)が後方一致しませんでした"); } } }
実行結果
指定の文字列(This)が前方一致しました
指定の文字列(sample)が後方一致しました