Dart言語 endsWithで文字列の終わりを判定するサンプル

環境
OS windows11 pro 64bit
Dart 2.18.1

構文
対象文字列.endsWith(文字列)
endsWithメソッドを使って、文字列の後方に指定した文字列が含まれているかを判定します。

使用例

void main() {
  String str = 'study';

  print(str.endsWith('y')); 
  print(str.endsWith('dy')); 
  print(str.endsWith('cft')); 
}

実行結果
true
true
false

Dart

Posted by arkgame