当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Dart String.endsWith用法及代码示例


dart:core 库中String.endsWith 方法的用法介绍如下。

用法:

bool endsWith(
   String other   
)

此字符串是否以 other 结尾。

例如:

const string = 'Dart is open source';
print(string.endsWith('urce')); // true

相关用法


注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 endsWith method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。