mykey myke!!
New member
-your script must convert the input to lower case
-your script must remove all spaces from the input,
i.e. it replaces each space character with an empty string
check the input contains the "@" symbol, else display a
specific message
-check the "@" symbol is not at the beginning or end of the
input, else display a specific message.
-check there is a period to the right of @
-check that there is enough room for a domain name and a
top level domain between the @, the period, and the end
of the email. The minimum size for those domains would
look like this: [email protected]
The period must be at least two positions to the right of @
and the last period in the address must be at least 2
positions from the end (think length) of the address.
-your script must remove all spaces from the input,
i.e. it replaces each space character with an empty string
check the input contains the "@" symbol, else display a
specific message
-check the "@" symbol is not at the beginning or end of the
input, else display a specific message.
-check there is a period to the right of @
-check that there is enough room for a domain name and a
top level domain between the @, the period, and the end
of the email. The minimum size for those domains would
look like this: [email protected]
The period must be at least two positions to the right of @
and the last period in the address must be at least 2
positions from the end (think length) of the address.