- read-string-until CHAR PORTprocedure
- read-string-between LEFTCHAR RIGHTCHAR PORTprocedure
These procedures read a string from the input port. read-string-until will read from the current position of the stream until CHAR is found (and CHAR will be included in the resulting string). read-string-between will first search for LEFTCHAR then read until RIGHTCHAR is found.