From df1409cb00ba7efd86d327fe5ae5e2ec62daaf0f Mon Sep 17 00:00:00 2001 From: Location <59411633+James-Lu-none@users.noreply.github.com> Date: Tue, 19 Dec 2023 13:11:58 +0800 Subject: [PATCH] Update lib/src/connector/course_connector.dart Co-authored-by: Chenghsuan Ho --- lib/src/connector/course_connector.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/connector/course_connector.dart b/lib/src/connector/course_connector.dart index 92e15c85..10670a12 100644 --- a/lib/src/connector/course_connector.dart +++ b/lib/src/connector/course_connector.dart @@ -104,7 +104,7 @@ class CourseConnector { // the title String of the first course table was stored seperately in its element, // but it currently stores all the information in a row, - // (ex: 學號:110310144  姓名:xxx  班級:電機三甲    112 學年度 第 1 學期 上課時間表) + // e.g. "學號:110310144  姓名:xxx  班級:電機三甲    112 學年度 第 1 學期 上課時間表" // so the RegExp is used to filter out only the number parts final titleString = nodes[0].text; final RegExp studentSemesterDetailFilter = RegExp(r'\b\d+\b');