Dart
Dart
Example: Http.GetUrlPath method
Demonstrates theGetUrlPath method.
Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
final http = CkHttp();
final url = 'https://example.com/folder/page?lang=en&sort=asc#section2';
print(http.getUrlPath(url));
// Output:
// /folder/page
}