Use EditPlus to CSV a register
How to edit a course register into a spreadsheet
- Copy paste register from browser into EditPlus
- Use basic editing to remove dud lines
- Find 'tab' characters and replace them with ',' and you have a basic CSV
- Find '^\n' and replace with '' as a regular expression will remove blank lines.
- Find '^ \n' and replace with '' as a regular expression will remove lines that appear blank but contain matching whitespace.
- Alternatively Find '[ ]' where the square brackets contain a tab character and a space character (you can't just type a tab into the text box) and replace with '' as a regular expression will remove whitespace leaving truly blank lines.
- Find '(000......)' and replace with '"\1"' as a regular expression, this will put full quotes around Banner IDs so they will be read as text.