<?xml version="1.0" encoding="utf-8" ?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Програмиране с Python</title>
<link>http://oldfmi.py-bg.net/forums/</link>
<description>Последни 35 отговора във форумите на курса Програмиране с Python</description>
<language>en</language>
<pubDate>Fri, 27 Sep 2013 19:09:05 +0000</pubDate>

<item>
<title>petio on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-986</link>
<pubDate>Fri, 18 Apr 2008 09:22:38 +0000</pubDate>
<dc:creator>petio</dc:creator>
<guid isPermaLink="false">986@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;Благодаря много. При първа възможност ще пробвам предложените от вас варианти.
&#60;/p&#62;</description>
</item>
<item>
<title>grayraven on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-960</link>
<pubDate>Mon, 14 Apr 2008 09:17:52 +0000</pubDate>
<dc:creator>grayraven</dc:creator>
<guid isPermaLink="false">960@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;и аз имах такъв проблем, мисля че * се брои за край на дума и</description>
</item>
<item>
<title>wireman on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-954</link>
<pubDate>Sun, 13 Apr 2008 23:05:20 +0000</pubDate>
<dc:creator>wireman</dc:creator>
<guid isPermaLink="false">954@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;\b&#60;/code&#62; нямат идея да се намират в клас (т.е. &#60;code&#62;[...]&#60;/code&#62;), тъй като те съвпадат с граница на дума, но тази граница има дължина 0, т.е. те реално не отговарят на някакъв конкретен текст/символ, а просто индикират, че има необходимите условия на съответното място да има граница на дума. Тоест, сложи ги извън класа и би трябвало да стане.
&#60;/p&#62;</description>
</item>
<item>
<title>petio on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-943</link>
<pubDate>Sun, 13 Apr 2008 10:35:11 +0000</pubDate>
<dc:creator>petio</dc:creator>
<guid isPermaLink="false">943@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;</description>
</item>
<item>
<title>filips on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-942</link>
<pubDate>Sun, 13 Apr 2008 10:09:21 +0000</pubDate>
<dc:creator>filips</dc:creator>
<guid isPermaLink="false">942@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;сетих се, ама чак днес на пресен мозък ... благодаря все пак
&#60;/p&#62;</description>
</item>
<item>
<title>dzver on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-940</link>
<pubDate>Sat, 12 Apr 2008 18:42:49 +0000</pubDate>
<dc:creator>dzver</dc:creator>
<guid isPermaLink="false">940@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;import re &#60;/p&#62;
&#60;p&#62;най-отгоре
&#60;/p&#62;</description>
</item>
<item>
<title>aquarius on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-939</link>
<pubDate>Sat, 12 Apr 2008 15:02:37 +0000</pubDate>
<dc:creator>aquarius</dc:creator>
<guid isPermaLink="false">939@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;global name 're' is not defined&#60;/p&#62;
&#60;p&#62;Как мисли</description>
</item>
<item>
<title>filips on "WTH - need help !!!!!"</title>
<link>http://oldfmi.py-bg.net/forums/topic/147#post-938</link>
<pubDate>Sat, 12 Apr 2008 14:36:16 +0000</pubDate>
<dc:creator>filips</dc:creator>
<guid isPermaLink="false">938@http://oldfmi.py-bg.net/forums/</guid>
<description>&#60;p&#62;&#38;gt;&#38;gt;&#38;gt; def matcher(regex,string):&#60;br /&#62;
	match=re.search(regex, string)&#60;br /&#62;
	if match is None: return string&#60;br /&#62;
	start,end=match.span()&#60;br /&#62;
	return string[:start] + '&#38;lt;&#38;lt;' + string[start:end] + '&#38;gt;&#38;gt;' + string[end:]&#60;/p&#62;
&#60;p&#62;&#38;gt;&#38;gt;&#38;gt; matcher(r'(\w+).*\1', 'Matches str if str repeats one of its words.')&#60;/p&#62;
&#60;p&#62;Traceback (most recent call last):&#60;br /&#62;
  File &#34;&#38;lt;pyshell#11&#38;gt;&#34;, line 1, in &#38;lt;module&#38;gt;&#60;br /&#62;
    matcher(r'(\w+).*\1', 'Matches str if str repeats one of its words.')&#60;br /&#62;
  File &#34;&#38;lt;pyshell#10&#38;gt;&#34;, line 2, in matcher&#60;br /&#62;
    match=re.search(regex, string)&#60;br /&#62;
NameError: global name 're' is not defined&#60;/p&#62;
&#60;p&#62;Защо се получава така, какво съм му направил на питона !?????
&#60;/p&#62;</description>
</item>

</channel>
</rss>
