博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python正则表达式练习
阅读量:5133 次
发布时间:2019-06-13

本文共 1603 字,大约阅读时间需要 5 分钟。

# 一. 判断字符串是否是全部小写(s1 = 'adkkdk' s2 = 'abc123efg') # import re,time # s1 = 'adkkdk' # s2 = 'abc123efg' # if re.findall('[a-z]*',s1): #     print('s1全部为小写') # else : #     print('鬼才知道是不是小写') # if not re.findall('\d*',s2):#如果包含数字就不是全部小写 #     print('s2全部为小写') # else : #     print('鬼才知道是不是小写') # print(time.ctime()) # Mon Feb 26 10:01:13 2018 # F:\Python\PythonLeaning\venv\Scripts\python.exe F:/Python/PythonLeaning/测试专用文件夹/正则表达式练习.py # s1全部为小写 # 鬼才知道是不是小写 # # Process finished with exit code 0 ##################################################################################################### # 二.  首字母缩写词扩充 # 具体示例 # FEMA   Federal Emergency Management Agency # IRA    Irish Republican Army # DUP    Democratic Unionist Party # FDA    Food and Drug Administration # OLC    Office of Legal Counsel # 分析 # 缩写词  FEMA # 分解为  F*** E*** M*** A*** # 规律    大写字母 + 小写(大于等于1个)+ 空格 # import time,re # s1 = 'Federal Emergency Management Agency' # s2 = 'Irish Republican Army' # s3 = 'Democratic Unionist Party' # s4 = 'Food and Drug Administration' # s5 = 'Office of Legal Counsel' # res = re.split('[^A-Z]+',s1) # res1 = "".join(res) # print(res1+'的扩展形式是:\n'+s1) ######################################################################################################## # F:\Python\PythonLeaning\venv\Scripts\python.exe F:/Python/PythonLeaning/测试专用文件夹/正则表达式练习.py # FEMA的扩展形式是: # Federal Emergency Management Agency # Process finished with exit code 0 ###########################################################################################################

转载于:https://www.cnblogs.com/pandaboy1123/p/8476907.html

你可能感兴趣的文章
django迁移数据库错误
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>