Skip to content

Commit

Permalink
Merge pull request #95 from lopezac/master
Browse files Browse the repository at this point in the history
Simplify siuparser regex patterns
  • Loading branch information
lopezac authored Mar 18, 2024
2 parents 67f113c + c8aa9a4 commit 7a1cdbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/siuparser.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export function parseSIU(rawdata) {
const result = [];

const periodoPattern =
/Período lectivo: ([^\n]+)\n((?!Período lectivo:)[\s\S])*?(?=(Período lectivo:|$))/g;
/Período lectivo: ([^\n]+)\n[\s\S]*?(?=Período lectivo:|$)/g;
const materiaPattern =
/Actividad: ([^\n]+) \((.+?)\)\n((?!Actividad:)[\s\S])*?(?=(Actividad:|$))/g;
/Actividad: ([^\n]+) \((.+?)\)\n[\s\S]*?(?=Actividad:|$)/g;
const cursosPattern =
/Comisión: ([^\n]+)[\s\S]*?Docentes: ([^\n]+)[\s\S]*?Tipo de clase\s+Día\s+Horario\s+Aula([\s\S]*?)(?=(Comisión:|$))/g;
/Comisión: ([^\n]+)[\s\S]*?Docentes: ([^\n]+)[\s\S]*?Tipo de clase\s+Día\s+Horario\s+Aula([\s\S]*?)(?=Comisión:|$)/g;

const periodos = [];
for (const periodoMatch of rawdata.matchAll(periodoPattern)) {
Expand Down

0 comments on commit 7a1cdbb

Please sign in to comment.