mirror of
https://github.com/asjqkkkk/flutter-todos.git
synced 2025-08-06 14:19:24 +08:00
16 lines
252 B
Dart
16 lines
252 B
Dart
import 'package:test/test.dart';
|
|
|
|
|
|
void main(){
|
|
|
|
|
|
test("测试文件名字截取", (){
|
|
|
|
String url = "https://p0.ssl.qhimgs1.com/sdr/400__/t0161a1cd87506776d4.jpg";
|
|
|
|
var filename = url.split("/").last;
|
|
|
|
print("名字:$filename");
|
|
});
|
|
|
|
} |