Python论坛  - 讨论区

标题:[python-chinese] 正则表达式 "2006年10月12日"的格式的日期

2006年10月12日 星期四 21:03

Mars Lenjoy mars.lenjoy在gmail.com
星期四 十月 12 21:03:46 HKT 2006

文字中包含 "2006年10月12日"的格式的日期提取出来
据说中文的编码是 \u4e00-\u9fa5
\d{4}[\u4e00-\u9fa5]\d{1,2}[\u4e00-\u9fa5]\d{1,2}[\u4e00-\u9fa5]

甚至连
\d{4}(.*)\d{1,2}(.*)\d{1,2}(.*)
也不行

编码问题?
表达式问题?

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年10月12日 星期四 21:36

limodou limodou在gmail.com
星期四 十月 12 21:36:13 HKT 2006

On 10/12/06, Mars Lenjoy <mars.lenjoy在gmail.com> wrote:
> 文字中包含 "2006年10月12日"的格式的日期提取出来
> 据说中文的编码是 \u4e00-\u9fa5
> \d{4}[\u4e00-\u9fa5]\d{1,2}[\u4e00-\u9fa5]\d{1,2}[\u4e00-\u9fa5]
>
> 甚至连
> \d{4}(.*)\d{1,2}(.*)\d{1,2}(.*)
> 也不行
>
> 编码问题?
> 表达式问题?

(.*?)比较好,你那样是贪婪方式,会一直读下去。
另外time模块有一个strptime()可以根据日期格式反向生成时间信息,你可以查一查。这样不需要使用正则式了。

-- 
I like python!
UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年10月13日 星期五 01:01

谢小漫 cat在ewyu.com
星期五 十月 13 01:01:33 HKT 2006

time.strptime(""%Y年%m月%d日", "2006年10月12日")

2006/10/12, limodou <limodou at gmail.com>:
>
> On 10/12/06, Mars Lenjoy <mars.lenjoy at gmail.com> wrote:
> > 文字中包含 "2006年10月12日"的格式的日期提取出来
> > 据说中文的编码是 \u4e00-\u9fa5
> > \d{4}[\u4e00-\u9fa5]\d{1,2}[\u4e00-\u9fa5]\d{1,2}[\u4e00-\u9fa5]
> >
> > 甚至连
> > \d{4}(.*)\d{1,2}(.*)\d{1,2}(.*)
> > 也不行
> >
> > 编码问题?
> > 表达式问题?
>
> (.*?)比较好,你那样是贪婪方式,会一直读下去。
> 另外time模块有一个strptime()可以根据日期格式反向生成时间信息,你可以查一查。这样不需要使用正则式了。
>
> --
> I like python!
> UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
> My Blog: http://www.donews.net/limodou
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
花开邑大,漫步心月湖。
http://www.ewyu.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20061013/aaf2f5da/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年10月13日 星期五 09:14

taozikun taozikun在163.com
星期五 十月 13 09:14:05 HKT 2006

我在模板中有写显示图片的代码,用浏览器直接打开模板的时候可以看到图片,但是通过服务器在浏览器中打开http://localhost:8000/login的时候却显示不了图片。这是为什么?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20061013/9e0858b3/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年10月13日 星期五 09:39

limodou limodou在gmail.com
星期五 十月 13 09:39:50 HKT 2006

On 10/13/06, taozikun <taozikun在163.com> wrote:
> 我在模板中有写显示图片的代码,用浏览器直接打开模板的时候可以看到图片,但是通过服务器在浏览器中打开http://localhost:8000/login的时候却显示不了图片。这是为什么?
>
查看一下源代码看一下图片的链接是否正确。


-- 
I like python!
UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年10月13日 星期五 09:39

马踏飞燕 honeyday.mj在gmail.com
星期五 十月 13 09:39:51 HKT 2006

察看你图片的路经。
如果你用django自带的服务器的话,需要设定一个"静态媒体服务"的路径来对你的媒体类资源进行service。
具体的请看django的文档,静态媒体服务的那一章。
如果是apache的话,就参考"在mod_python中使用Django"的那片文档,里面有详细的讲解的。

在 06-10-13,taozikun<taozikun在163.com> 写道:
> 我在模板中有写显示图片的代码,用浏览器直接打开模板的时候可以看到图片,但是通过服务器在浏览器中打开http://localhost:8000/login的时候却显示不了图片。这是为什么?
>
>
>
>
>
>
> 美 女 恐 怖 败 家 秀 ( 组 图 )
> 独 家 披 露 ! 小 资 女 人 8 个 绝 顶 隐 秘 的 趣 事 ( 组 图 )
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年10月15日 星期日 01:43

Shaun Li shpycn在gmail.com
星期日 十月 15 01:43:00 HKT 2006

两步:
1、在 settings.py 里配置 MEDIA_ROOT 和 MEDIA_URL
2、templates 中使用 MEDIA_URL 的定义作为前缀

例:
settings.py:
MEDIA_ROOT = '/path/to/project/site_media'
MEDIA_URL = '/medias/'

templates/login.html:


-- 
Shaun Li
-------------- 下一部分 --------------
一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20061015/09f901b4/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号