发布网友 发布时间:2022-04-23 16:38
共5个回答
热心网友 时间:2022-04-19 01:07
没分..很简单 (python2.7)
s = "发表于:2013-06-04"
# 我猜你的方法是
filter(str.isalnum,s)
# result '20130604'
热心网友 时间:2022-04-19 02:25
要提取时间的话,用正则表达式吧
热心网友 时间:2022-04-19 03:59
使用正则表达式,过滤
热心网友 时间:2022-04-19 05:51
我猜你是爬虫爬取到的吧,用分割比较方便,用split分割:,就可以了。
热心网友 时间:2022-04-19 07:59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
str="发表于:2013-06-04"
import re
print re.search(r'\d{4}-\d{2}-\d{2}', str).group(0)