博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
调整字符串日期的格式
阅读量:6838 次
发布时间:2019-06-26

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

import res = 'birthday is 1991-11-19'res1 = re.sub('(\d{4})-(\d{2})-(\d{2})',r'\2/\3/\1',s)res2 = re.sub('(?P
\d{4})-(?P
\d{2})-(?P
\d{2})',r'\g
/\g
/\g
',s)print(res1)print(res2)

 

转载于:https://www.cnblogs.com/ray-mmss/p/10465741.html

你可能感兴趣的文章
Java 抽象类和接口
查看>>
分支1-CentOS6.5下 正/反向域名解析之yum安装/编译安装 的教程
查看>>
Advanced Auto Layout:Programmatically Creating Constraints
查看>>
枚举类型的定义与使用
查看>>
nginx解析php
查看>>
KVM虚拟机克隆
查看>>
PXE无人值守安装
查看>>
linux 系统相关服务解释
查看>>
目标检测-基于Pytorch实现Yolov3(1)- 搭建模型
查看>>
java实验报告(实验一)
查看>>
哈哈,我又回来了
查看>>
【转载】Java JVM 运行机制及基本原理
查看>>
python-冒泡排序
查看>>
无缝滚动与切换
查看>>
sql insert and update
查看>>
CF401D Roman and Numbers
查看>>
Google C++命名规范
查看>>
POJ 2516 Minimum Cost 费用流
查看>>
基于nginx的正向代理实现
查看>>
软件测试体系方案
查看>>