/*
Beginning C, Third Edition
By Ivor Horton
ISBN: 1-59059-253-0
Published: Apr 2004
Publisher: apress
*/
/*
type 1: a sequence of lowercase letters followed by a digit. e.g. number1
type 2: two words that both begin with a capital letter and have a hyphen between them. e.g. Seven-Up
type 3: a decimal value. e.g. 7.35
type 4: a sequence of upper or lower case letters and spaces. e.g. Oliver Hardy
type 5: a sequence of any characters except spaces and digits that does not
start with a letter. e.g. floating-point
The simple approach is to use the fact that each string after the first starts with
a character that does not appear in the previous string. Thus you can specify the characters for
each string as anything that is not the first character in the string that follows.
This approach would allow illegal characters in the string to be read.
e.g. the first string could be read as any lowercase letter or digit.
To positively ensure the strings are in the form specified is much more work as the
code here shows.
If you wanted to allow erroneous data to be re-entered, it would be easiest if you
require each input to be on a separate line.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main()
{
char word1[50];
char word2[50];
char word3[50];
char word4[50];
char word5[50];
char temp[50];
int k = 0;
printf("Enter the five strings:\n");
/* Read first string, first the lowercase letters, then the digit */
k = scanf(" %[abcdefghijklmnopqrstuvwxyz]%1[0123456789]", word1, temp);
if(k<2)
{
printf("Incorrect input for first string - program terminated.\n");
exit(1);
}
strcat(word1,temp);
/* Read second string, first the uppercase letter, then the following
letters, then the hyphen, then the uppercase letter, finally the
following letters.
*/
k = scanf(" %1[ABCDEFGHIJKLMNOPQRSTUVWXYZ]", word2);
if(k<1)
{
printf("Incorrect input for second string - program terminated.\n");
exit(1);
}
scanf("%[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]", temp);
strcat(word2,temp);
k = scanf("%1[-]", temp);
if(k<1)
{
printf("Incorrect input for second string - program terminated.\n");
exit(1);
}
k = scanf(" %1[ABCDEFGHIJKLMNOPQRSTUVWXYZ]", temp);
if(k<1)
{
printf("Incorrect input for second string - program terminated.\n");
exit(1);
}
strcat(word2,temp);
scanf("%[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]", temp);
strcat(word2,temp);
/* Read the third string. I cheat a bit because I read this assuming it is a well-formed
decimal string. To verify that is really is, you could read it as a decimal
value and then convert it to a string.
*/
k = scanf(" %[0123456789.-]", word3);
if(k<1)
{
printf("Incorrect input for third string - program terminated.\n");
exit(1);
}
/* Read the fourth string. */
scanf("%[ abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]", word4);
if(k<1)
{
printf("Incorrect input for fourth string - program terminated.\n");
exit(1);
}
/* Read the fifth string. You must exclude newline, otherwise it will be
rad as part of the string.
*/
scanf(" %[^ 0123456789\n]", word5);
printf("The input strings read are: \n%s %s %s %s %s\n",
word1, word2, word3, word4, word5);
}
|