Python程序接受以字母数字字符结尾的字符串

当需要检查字符串是否以字母数字字符结尾时,使用正则表达式。定义了一种方法,用于检查以查看字母数字字符,并将字符串作为输出返回。

示例

下面是相同的演示

import re

regex_expression = '[a-zA-z0-9]$'

def check_string(my_string):

   if(re.search(regex_expression, my_string)):

      print("The string ends with alphanumeric character")

   else:

      print("The string doesnot end with alphanumeric character")

my_string_1 = "Python@"

print("字符串是:")

print(my_string_1)

check_string(my_string_1)

my_string_2 = "Python1245"

print("\n字符串是:")

print(my_string_2)

check_string(my_string_2)

输出结果
字符串是:

Python@

The string doesn’t end with alphanumeric character

字符串是:

Python1245

The string ends with alphanumeric character

解释

  • 导入所需的包。

  • 定义了一个正则表达式字符串。

  • 定义了一个名为“check_string”的方法,它将字符串作为参数。

  • 'search' 方法被调用并检查以查看字符串是否以特定字符结尾。

  • 在方法之外,字符串被定义并显示在控制台上。

  • 通过传递此字符串来调用该方法。

  • 输出显示在控制台上。

以上是 Python程序接受以字母数字字符结尾的字符串 的全部内容, 来源链接: utcz.com/z/354405.html

回到顶部