void setup()
{
  String[] txt = loadStrings( "ReservedStreetnames.csv" );
  
  for( int idx = 0; idx < txt.length; ++idx ) {
    String line = txt[idx];
    if( line.charAt( 0 ) == '|' ) {
      String[] words = splitTokens( line, "|" );
      String street = trim( words[0] );
      String muni = trim( words[1] );
      println( "Let's reserve " + street + " in " + muni );
    }
  }
}