2007年07月14日 星期六 00:40
是这样的的,我如果要做这样的替换: 将a+aa中的a替换为B,而不影响aa。即: a+aa ==> B+aa 请教各位了。
2007年07月14日 星期六 05:40
a[^a] 在07-7-14,Ni ZhengGang <ni在twinisa.com> 写道: > > 是这样的的,我如果要做这样的替换: > > 将a+aa中的a替换为B,而不影响aa。即: > > a+aa ==> B+aa > > 请教各位了。 > > _______________________________________________ > 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 -- 茫茫人海,你是我的最爱 -------------- 下一部分 -------------- 一个HTML附件被移除... URL: http://python.cn/pipermail/python-chinese/attachments/20070714/20fa5169/attachment.html
2007年07月14日 星期六 08:50
Ó¦¸ÃÓöÏÑÔ°É£¬Ç°ÏòµÄºÍºóÏòµÄ¶¼Òª--_-- (?http://python.cn/pipermail/python-chinese/attachments/20070714/9d0e925a/attachment.html
2007年07月14日 星期六 11:04
谢谢,正在学习re,还要多多请教。 XiaQ 写道: > 应该用断言吧,前向的和后向的都要--_-- > (?> (?> 是前向否定断言 > (?!) > 是后向否定断言 > > ------------------------------------------------------------------------ > > _______________________________________________ > 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
2007年07月14日 星期六 11:24
吼吼,别的学了就忘了,就只有re没忘 re的问题尽管mail我:) 在07-7-14,Ni ZhengGang <ni在twinisa.com> 写道: > > 谢谢,正在学习re,还要多多请教。 > > > XiaQ 写道: > > 应该用断言吧,前向的和后向的都要--_-- > > (?> > (?> > 是前向否定断言 > > (?!) > > 是后向否定断言 > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 > > _______________________________________________ > 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 -------------- 下一部分 -------------- 一个HTML附件被移除... URL: http://python.cn/pipermail/python-chinese/attachments/20070714/b191a022/attachment.htm
2007年07月16日 星期一 14:10
On 7/14/07, Ni ZhengGang <ni在twinisa.com> wrote: > 是这样的的,我如果要做这样的替换: > > 将a+aa中的a替换为B,而不影响aa。即: > > a+aa ==> B+aa > > 请教各位了。 > 我感觉这样会比较好: >>> import re >>> r = re.compile(r'\ba\b') >>> r.sub('B', 'a+aa') 'B+aa' >>> -- Best Regards, Leo Jay
2007年07月16日 星期一 14:56
是可以的,谢谢。之前自己也试过这个,不过没有加上前面的"r",这个r是什么意 思呢? > O 7/14/07, Ni ZhengGang <ni在twinisa.com> wrote: > >> 是这样的的,我如果要做这样的替换: >> >> 将a+aa中的a替换为B,而不影响aa。即: >> >> a+aa ==> B+aa >> >> 请教各位了。 >> >> > > 我感觉这样会比较好: > > >>>> import re >>>> r = re.compile(r'\ba\b') >>>> r.sub('B', 'a+aa') >>>> > 'B+aa' > > >
2007年07月16日 星期一 19:54
r是"原始字符串",用来防止Python对"\"进行转义。 在07-7-16,Ni ZhengGang <ni在twinisa.com> 写道: > > 是可以的,谢谢。之前自己也试过这个,不过没有加上前面的"r",这个r是什么意 > 思呢? > > O 7/14/07, Ni ZhengGang <ni在twinisa.com> wrote: > > > >> 是这样的的,我如果要做这样的替换: > >> > >> 将a+aa中的a替换为B,而不影响aa。即: > >> > >> a+aa ==> B+aa > >> > >> 请教各位了。 > >> > >> > > > > 我感觉这样会比较好: > > > > > >>>> import re > >>>> r = re.compile(r'\ba\b') > >>>> r.sub('B', 'a+aa') > >>>> > > 'B+aa' > > > > > > > > _______________________________________________ > 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 -------------- 下一部分 -------------- 一个HTML附件被移除... URL: http://python.cn/pipermail/python-chinese/attachments/20070716/ccc97d5b/attachment.html
Zeuux © 2025
京ICP备05028076号