【发布时间】:2020-05-09 13:58:42
【问题描述】:
在 Dart 中是否有等效的 strstr() 函数?
我在 PHP 中使用了strstr(),我想在 Dart 中使用它。
谢谢。
【问题讨论】:
标签: string flutter dart flutter-web
在 Dart 中是否有等效的 strstr() 函数?
我在 PHP 中使用了strstr(),我想在 Dart 中使用它。
谢谢。
【问题讨论】:
标签: string flutter dart flutter-web
这是 PHP's strstr 的 Dart 等效项:
String strstr(String myString, String pattern, {bool before = false}) {
var index = myString.indexOf(pattern);
if (index < 0) return null;
if (before) return myString.substring(0, index);
return myString.substring(index + pattern.length);
}
输出:
strstr('name@example.com', '@'); // example.com
strstr('name@example.com', '@', before: true); // name
strstr('path/to/smthng', '/'); // to/smthng
strstr('path/to/smthng', '/', before: true); // path
【讨论】: