Skip to content

Instantly share code, notes, and snippets.

@htsutsui
Created July 22, 2023 11:17
Show Gist options
  • Save htsutsui/bc1595529e52643f8ff3ab95e8abf887 to your computer and use it in GitHub Desktop.
Save htsutsui/bc1595529e52643f8ff3ab95e8abf887 to your computer and use it in GitHub Desktop.
北大工学系ユグドラシル 大学院生指導教員入力の表から学生番号等を抜き出す
// https://yggdrasil.eng.hokudai.ac.jp/info_student/edu/
$("tr").map(function(){
if($(this).children().slice(3, 4).text().match("大鐘")){
return $(this).children().slice(0, 4).map(function(){
return $(this).text();
}).toArray().join(" ").replaceAll(" ", " ");
}
}).toArray().join("\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment