Skip to content

Commit

Permalink
ENH:Custom_Selection
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-nair-20 committed Dec 22, 2024
1 parent c2673eb commit ffaa4c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function getLine(line: string): InputLine {
parsedResult.caseId = content[0];
} else if (content.length > 1) {
parsedResult.studyId = content[0];
const groupInfo = content[1].split(/\s|\t/g);
const groupInfo = content[1].split(/[\s,\t]+/g);
if (groupInfo.length > 1) {
parsedResult.value = groupInfo[1];
}
Expand Down

0 comments on commit ffaa4c7

Please sign in to comment.