Fundamentals of Computer Science I (CS151.02 2007S)

Characters and Strings in Scheme

This lab is also available in PDF.

Summary: In these exercises, you will explore a number of the standard Scheme procedures for handling characters and strings. You will also explore an application of these procedures for marking up text.

Contents:

Useful Procedures and Notation:

Exercises

Exercise 0: Preparation

a. If you have not done so already, you may also want to open separate tabs with the reading on characters and the reading on strings.

b. If you have not done so already, you may want to skim Section 6.3.5 of the Scheme Report.

c. Start DrScheme.

Exercise 1: Collating Sequences

As you may recall, Scheme uses a collating sequence for the letters, assigning a sequence number to each letter. DrScheme uses the ASCII collating sequence.

a. Determine the ASCII collating-sequence numbers for the capital letter A and for the lower-case letter a.

b. Find out what ASCII character is in position 38 in the collating sequence.

c. Do the digit characters precede or follow the capital letters in the ASCII collating sequence?

d. If you were designing a character set, where in the collating sequence would you place the space character? Why?

e. What position does the space character occupy in ASCII?

Exercise 2: Character Predicates

a. Determine whether our implementation of Scheme considers #\newline a whitespace character.

b. Determine whether our implementation of Scheme indicates that capital B precedes lower-case a.

c. Determine whether our implementation of Scheme indicates that lower-case a precedes capital B.

d. Verify that the case-insensitive comparison operation (char-ci<?) gives the expected result for the previous two tests.

e. Determine whether our implementation of Scheme indicates that #\a and #\A are the same letter. (It should not.)

f. Find an equality predicate that returns #t when given #\a and #\A as parameters.

Exercise 3: String Basics

a. Write a Scheme expression to determine whether the symbol 'hyperbola is a string.

b. Write a Scheme expression to determine whether the character #\A is a string.

c. Does the empty string (represented as "") count as a string?

Exercise 4: Creating Questions

Develop three ways of constructing the string "???" -- one using a call to make-string, one a call to string, and one a call to list->string.

Exercise 5: Referencing Lengths

Here are two opposing views about the relationship between string-length and string-ref:

Which, if either, of these views is correct? Why?

Exercise 6: Building Simple Sentences

Consider the definition

(define like
  (string-append 
     "I like " 
     person 
     " because " 
     person 
     " is "
     adjective
     "."))

a. What other values must be defined in order for this definition to work?

b. What type must those values have?

c. Suppose you had previously defined person as "Daniel" and adjective as "cheerful". What do you expect the value of like to be?

d. Confirm your previous answer experimentally.

Exercise 7: Building Sentences, Revisited

One criticism of the like definition in the previous exercise is that it takes a lot of lines. We could define a similar sentence as follows:

(define tunes
  (string-append "I listen to " band " because their music is " adjective "."))

a. What are the comparative advantages and disadvantages of the single-line sentence-building definition?

b. Define band and adjective in such a way that tunes can be successfully defined.

Exercise 8: A Simple Form Letter

We can, of course, use a similar technique to build longer form letters. Consider the following definitions

(define cr (string #\newline))
(define letter
  (string-append
    "Dear " recipient ", " cr
    cr
    "Thank you for your submission to " magazine ".  Unfortunately, we " cr
    "consider the subject of your article, " article ", inappropriate for our" cr
    "readership.  In fact, it is probably inappropriate for any readership." cr
    "Please do not contact us again, and do not bother other magazines with" cr
    "this inappropriate material or we will be forced to contact the " cr
    "appropriate authorities." cr
    cr
    "Regards," cr
    "Ed I. Tor" cr))

a. What must be defined for the definition of letter to succeed?

b. Confirm that the definition of letter works by using the following sub-definitions

(define recipient "Professor Schneider")
(define magazine "College Trustee News")
(define article "Using Grinnell's Endowment to Eliminate Tuition")

c. You may note that the output is fairly ugly when you simply ask for letter. You can get nicer output by using the display procedure, as in (display letter). Try doing so.

Exercise 9: Adding Quotation Marks

a. What changes are necessary to letter so that name of the article appears in quotation marks?

b. Confirm your answer experimentally.

Exercise 10: More Form Letters

a. Create a file, sam.ss, with the following lines:

(define recipient "Mr. Rebelsky")
(define magazine "Liberal Arts Letters")
(define article "Why Every Faculty Member Should Take Introductory Computer Science")

b. Create a separate file, letter.ss that contains the definition of cr and the updated definition of letter from the previous exercises.

c. In the definitions window, type the following

(load "sam.ss")
(load "letter.ss")
(display letter)

d. What do you expect to happen when you click Run?

e. Confirm your answer experimentally.

f. What ideas does this exercise suggest to you?

For Those with Extra Time

Create anotehr form of form letter.

 

History

 

Disclaimer: I usually create these pages on the fly, which means that I rarely proofread them and they may contain bad grammar and incorrect details. It also means that I tend to update them regularly (see the history for more details). Feel free to contact me with any suggestions for changes.

This document was generated by Siteweaver on Thu Sep 13 20:54:30 2007.
The source to the document was last modified on Wed Jan 31 10:37:43 2007.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2007S/Labs/strings.html.

You may wish to validate this document's HTML ; Valid CSS! ; Creative Commons License

Samuel A. Rebelsky, rebelsky@grinnell.edu

Copyright © 2007 Samuel A. Rebelsky. This work is licensed under a Creative Commons Attribution-NonCommercial 2.5 License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc/2.5/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.