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