For a given line, write a Python program to check if the given line ends with only an alphanumeric character or not.
Examples :
Input: ankitrai326 Output: Accept Input: ankirai @ Output: Discard
In this program we use the search ()
method of the re module .
re.search (): this method either returns None (if the pattern does not match) or re.MatchObject
which contains information about the matching part of the string. This method stops after the first match, so it’s better for checking regular expressions than for extracting data.
The POSIX / C locale is 36 case-insensitive characters (AZ and 0-9) or 62 characters case sensitive (AZ, az and 0-9).
Let’s take a look at a Python program for this:
|
Output:
Discard Accept Discard Accept