User Tools

Site Tools


eg-259:homework:9

This is an old revision of the document!


Text Processing with Regular Expressions

Adapted from: Chapter 4 of Robert W. Sebasta, Programming the World-Wide Web, 3rd Edition, Addison Wesley, 2006. Supporting: Lecture 7.

Write, test and debug (if necessary) XHTML files that include JavaScript scripts for the following problems. When required to write functions, you must include a script to test the function with at least two different data sets.

1. Exercises from the Lecture

  1. Input: A text string, using prompt; Output: either legal name or Illegal name, depending on whether the input string fits the required format, which is: Last name, first name, middle initial where neither of the names can have more than 15 characters.
  2. Input: A text string, using prompt; Output: The words of the input text, in alphabetical order
  3. Function: tst_name; Parameter: a string; Returns: true if the given string has the form: string1, string2, letter where both strings must be all lowercase letters except the first letter, and letter must be uppercase; false otherwise.

2. Additional Exercises

Try these if you need or want more practice. All exercises are from Chapter 4 of Robert W. Sebasta, Programming the World-Wide Web, 3rd Edition, Addison Wesley, 2006.

  1. Modify the script for Exercise 1.2 to get a second input from the user, which is either “ascending” or “descending”. Use this input to determine how to sort the input words.
  2. Function: e_names; Parameter: An array of names, represented as strings. Returns: The number of names in the given array that end in either “e” or “y”.
  3. Function: first_vowel; Parameter: A string. Returns: The position in the string of the leftmost vowel.
  4. Function: reverser; Parameter: A number. Returns: The number with its digits in reverse order.

3. Practical Exercises

  • Copy and paste the following text into the Target window of JRX
  The quick brown fox jumped over the lazy dog.
  
  Xooo
  oXoo
  ooXo
  oooX
  
  ABCDEFGHIJKLMNOPQRSTUVWXYZ
  abcdefghijklmnopqrstuvwxyz
  0123456789 `|\<>,./?#~'@;:[]{}=+-_)(*&^%$£"!
  
  555-789-1234
  
  some.one@swan.ac.uk
  Some wiki text with words in //italic// and **bold**. Like //this// or **that**.
  • Write regular expressions to match:
    1. any non-blank line of text.
    2. any word.
    3. the telephone number.
    4. “X” followed by up to two “o” characters
    5. one or more “o” character followed by “X”
    6. any upper case vowel
    7. any lowercase consonant
    8. any punctuation character
    9. The domain name of the email address.
    10. The user name of the email address.
    11. The words in italics in the wiki text.
  • Take any (or all) of the example JavaScript programs from the last three lectures and explore them in Firebug using the console, console logger and debugger.

More Homework Exercises

eg-259/homework/9.1295010040.txt.gz · Last modified: 2011/02/22 09:22 (external edit)