home *** CD-ROM | disk | FTP | other *** search
- ############################################################################
- #
- # File: lastname.icn
- #
- # Subject: Procedure to produce last name
- #
- # Author: Ralph E. Griswold
- #
- # Date: September 2, 1991
- #
- ###########################################################################
- #
- # Produces the last name of a name in conventional form. Obviously, it
- # doesn't work for every possibility.
- #
- ############################################################################
-
- procedure lastname(s)
- while line := trim(s) do {
- line ?:= tab(upto(',')) # Get rid of things like " ... , Jr."
- line ? {
- every i := upto(' ')
- tab(\i + 1)
- return tab(0)
- }
- }
- end
-