Fix fix
This commit is contained in:
parent
f337b11f19
commit
8dc3716f97
1 changed files with 1 additions and 2 deletions
|
@ -261,7 +261,7 @@ class Canteen {
|
||||||
.toString());
|
.toString());
|
||||||
var jidla = <Jidlo>[];
|
var jidla = <Jidlo>[];
|
||||||
var jidelnicek = RegExp(
|
var jidelnicek = RegExp(
|
||||||
r'((?<=<div class="jidWrapLeft">).+?do burzy)|((?<=<div class="jidWrapLeft">).+?(?=<br>))',
|
r'((?<=<div class="jidWrapLeft">).+?((?=<br>)|(do burzy)))',
|
||||||
dotAll: true)
|
dotAll: true)
|
||||||
.allMatches(res)
|
.allMatches(res)
|
||||||
.toList();
|
.toList();
|
||||||
|
@ -286,7 +286,6 @@ class Canteen {
|
||||||
.firstMatch(o)!
|
.firstMatch(o)!
|
||||||
.group(0)
|
.group(0)
|
||||||
.toString()
|
.toString()
|
||||||
.replaceAll("<br>", "")
|
|
||||||
.split(" / ");
|
.split(" / ");
|
||||||
var vydejna = RegExp(
|
var vydejna = RegExp(
|
||||||
r'(?<=<span class="smallBoldTitle button-link-align">).+?(?=<)')
|
r'(?<=<span class="smallBoldTitle button-link-align">).+?(?=<)')
|
||||||
|
|
Reference in a new issue