Skip to content

Commit

Permalink
caught all those dots
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Castro committed Aug 20, 2024
1 parent dc232b4 commit 8238db3
Show file tree
Hide file tree
Showing 3 changed files with 705 additions and 705 deletions.
2 changes: 1 addition & 1 deletion csv/2024-2028/CVS_Creation_Process.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
4. remove header rows (except row 1): 57, 137, 169
5. remove empty rows (search in column A)
6. fill-in the missing values (in Review Board, Subject Area, Scientific Discipline columns) - this is tedious but important, as we cannot reply on merged cells in the CSV. And it is at the core of the tree structure
7. simplified the number notation removing the dots, ie. '1.22-01' -> '122-01'. Used regex `^(\d)\.(\d)` and replacement `$1$2`
7. simplified the number notation removing the dots, ie. '1.22-01' -> '122-01'. Used regex `^(\d)\.(\d)` with replacement `$1$2`. And regex `,"(\d)\.(\d\d)` with replacement `,"$1$2` for references to parent nodes

## Join both CSVs

Expand Down
Loading

0 comments on commit 8238db3

Please sign in to comment.