general_lib_utils_range method
Implementation
(num from, num to) general_lib_utils_range() {
try {
RegExp regExp = RegExp("(bytes=([0-9]+)-([0-9]+))");
RegExpMatch? regExpMatch = regExp.firstMatch(this);
if (regExpMatch == null) {
return (0, 0);
}
return (
num.tryParse(regExpMatch.group(2) ?? "0") ?? 0,
num.tryParse(regExpMatch.group(3) ?? "0") ?? 0
);
} catch (e) {}
// bytes=0-227836;
return (0, 0);
}