<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[double in string umwandeln, in Hilfe finden]]></title><description><![CDATA[<p>Ich möchte einen Wert aus einem Edit Control auslesen, verändern und in ein anderes Editcontrol wieder ausgeben.</p>
<p>Dazu mache ich bislang:</p>
<pre><code class="language-cpp">CString CstrText;	
	m_wndEdit1.GetWindowText (CstrText);
	double dstrValue = _tcstod(CstrText,NULL); 	
	CstrText = atof(dstrValue); 	// funktioniert nicht!
	m_wndEdit2.SetWindowText (CstrText);
</code></pre>
<p>Den Befehl '_tcstod' habe ich durch Zufall im Internet gefunden. Die Hilfe von VS ha mir überhaupt nicht weitergeholfen. Daher meine erste Frage: wie findet man derartiges in der Hilfe?</p>
<p>Dann möchte ich dstrValue beliebig verändern und danch wieder ausgeben. Dazu konnte ich aber nicht herausfinden wie man double wieder in CString umwandelt.</p>
<p>Und wie stelle ich sicher das CstrText aus Edit1 wirklich nur Zahlen und keine Buchstaben enthält?</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/165145/double-in-string-umwandeln-in-hilfe-finden</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Apr 2026 05:17:34 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/165145.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Nov 2006 22:25:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Wed, 15 Nov 2006 22:25:28 GMT]]></title><description><![CDATA[<p>Ich möchte einen Wert aus einem Edit Control auslesen, verändern und in ein anderes Editcontrol wieder ausgeben.</p>
<p>Dazu mache ich bislang:</p>
<pre><code class="language-cpp">CString CstrText;	
	m_wndEdit1.GetWindowText (CstrText);
	double dstrValue = _tcstod(CstrText,NULL); 	
	CstrText = atof(dstrValue); 	// funktioniert nicht!
	m_wndEdit2.SetWindowText (CstrText);
</code></pre>
<p>Den Befehl '_tcstod' habe ich durch Zufall im Internet gefunden. Die Hilfe von VS ha mir überhaupt nicht weitergeholfen. Daher meine erste Frage: wie findet man derartiges in der Hilfe?</p>
<p>Dann möchte ich dstrValue beliebig verändern und danch wieder ausgeben. Dazu konnte ich aber nicht herausfinden wie man double wieder in CString umwandelt.</p>
<p>Und wie stelle ich sicher das CstrText aus Edit1 wirklich nur Zahlen und keine Buchstaben enthält?</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175574</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175574</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Wed, 15 Nov 2006 22:25:28 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Thu, 16 Nov 2006 06:06:32 GMT]]></title><description><![CDATA[<blockquote>
<p>CstrText = atof(dstrValue); // funktioniert nicht!</p>
</blockquote>
<p>kann auch gar nicht funktionieren, es wird von String in double umgewandelt:</p>
<pre><code class="language-cpp">double atof( const char *str );

dstValue=atof(CstrText);
</code></pre>
<p>Guck mal nach:</p>
<pre><code class="language-cpp">char *_fcvt( 
   double value,
   int count,
   int *dec,
   int *sign 
);
</code></pre>
<p>Tester2</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175620</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175620</guid><dc:creator><![CDATA[Tester2]]></dc:creator><pubDate>Thu, 16 Nov 2006 06:06:32 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Thu, 16 Nov 2006 07:16:05 GMT]]></title><description><![CDATA[<p>pospiech schrieb:</p>
<blockquote>
<p>Die Hilfe von VS ha mir überhaupt nicht weitergeholfen. Daher meine erste Frage: wie findet man derartiges in der Hilfe?</p>
</blockquote>
<p><a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-133348.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-133348.html</a><br />
Du arbeitest mit CEdit und CString, also such am besten danach. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<blockquote>
<p>Dann möchte ich dstrValue beliebig verändern und danch wieder ausgeben. Dazu konnte ich aber nicht herausfinden wie man double wieder in CString umwandelt.<br />
[/cpp]Schau in die Faq oder probier gleich mal das aus, was ich dir oben verlinkt habe. Sollte das selbe Ergebnis haben.[cpp]<br />
Und wie stelle ich sicher das CstrText aus Edit1 wirklich nur Zahlen und keine Buchstaben enthält?</p>
<p>Matthias</p>
</blockquote>
<p>Guck mal in die Eigenschaften des Edit. Ist ganz einfach. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175642</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175642</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Thu, 16 Nov 2006 07:16:05 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Sun, 19 Nov 2006 16:38:58 GMT]]></title><description><![CDATA[<p>Tester2 schrieb:</p>
<blockquote>
<p>Guck mal nach:</p>
<pre><code class="language-cpp">char *_fcvt( 
   double value,
   int count,
   int *dec,
   int *sign 
);
</code></pre>
</blockquote>
<p>In der hilfe dazu stand, dass man besser _fcvt_s benutzen sollte. Habe ich jetzt implementiert:</p>
<pre><code class="language-cpp">double dstrValue = _tcstod(CstrText,NULL); 	
	// CstrText = atof(dstrValue); 	
	// m_wndEdit2Control.SetWindowText (CstrText);

	// Konvertierung von double nach CString
	char * buffer = 0;
	int decimal; //Pointer to the stored decimal-point position.
	int sign; //Pointer to the stored sign indicator. 
	int err; 

	buffer = (char*) malloc(_CVTBUFSIZE); 
	err = _fcvt_s(buffer, _CVTBUFSIZE, dstrValue, 5, &amp;decimal, &amp;sign);
</code></pre>
<p>Das macht mir allerdings aus &quot;12&quot; erst ein &quot;12.00000&quot; und daraus wieder den String &quot;1200000&quot; - ich hätte aber gerne ein menschenlesbares &quot;12&quot; mit korrekt eingefügter Kommastelle.</p>
<p>Kann ja nicht sein, dass noch nie jemand dieses Problem hatte.</p>
<p>estartu schrieb:</p>
<blockquote>
<p>Guck mal in die Eigenschaften des Edit. Ist ganz einfach. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>Ja - aber dann kann ich kein Komma und kein Punkt mehr eingeben. Da ich nicht nur ganzahlige Zahlen benötige hilft mir das somit nicht weiter.</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1177283</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1177283</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Sun, 19 Nov 2006 16:38:58 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Sun, 19 Nov 2006 17:33:41 GMT]]></title><description><![CDATA[<p>pospiech schrieb:</p>
<blockquote>
<p>[...] wie findet man derartiges in der Hilfe? [...]</p>
</blockquote>
<p>Indem Du in der MSDN suchst ?!<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://msdn.microsoft.com/library/" rel="nofollow">http://msdn.microsoft.com/library/</a></p>
<p>pospiech schrieb:</p>
<blockquote>
<pre><code class="language-cpp">// ...
CstrText = atof(dstrValue);     // funktioniert nicht!
// ...
</code></pre>
</blockquote>
<p>Funktioniert nicht, ist immer noch keine Fehlermeldung!- <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
Wenn atof hier die Standard-C-Funktion ist (siehe <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HTML/_crt_atof.2c_.atoi.2c_._atoi64.2c_.atol.asp" rel="nofollow">Hier</a>), dann kannst das doch<br />
auch nicht funktionieren. Der Return-Wert passt doch gar nicht.</p>
<p>pospiech schrieb:</p>
<blockquote>
<p>Ja - aber dann kann ich kein Komma und kein Punkt mehr eingeben. Da ich nicht nur ganzahlige Zahlen benötige hilft mir das somit nicht weiter.</p>
</blockquote>
<p>Denke mal das musst Du vollständig selbst implementieren.</p>
<p><strong>Mal eine allgemeine Frage:</strong><br />
Wenn MFC doch mit C++ 'arbeitet' (wenn auch etwas amateurhaft), warum verwenden dann alle hier C-Funktionen. Man könnte das hier (mal abgesehen vom locale-Problem) doch auch mit std::stringstream's und std::setprecision lösen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> ... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f4a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--light_bulb"
      title=":bulb:"
      alt="💡"
    /> ... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> .</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1177323</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1177323</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Sun, 19 Nov 2006 17:33:41 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Sun, 19 Nov 2006 17:40:32 GMT]]></title><description><![CDATA[<p>CodeFinder schrieb:</p>
<blockquote>
<p>pospiech schrieb:</p>
<blockquote>
<p>[...] wie findet man derartiges in der Hilfe? [...]</p>
</blockquote>
<p>Indem Du in der MSDN suchst ?!<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://msdn.microsoft.com/library/" rel="nofollow">http://msdn.microsoft.com/library/</a></p>
</blockquote>
<p>Ich habe bislang nur mit VB6 und dessen IDE gearbeitet. Dort reicht ein F1 auf dem betreffenden Element, Code oder Ressource, und man hat was man sucht. Bei VS2005C++ funktioniert genau das überhaupt nicht. Und MSDN bringt mir meist 100 Ergebnisse von denen sich die meisten überhaupt nicht auf C++ beziehen - daher meine Frage.</p>
<p>CodeFinder schrieb:</p>
<blockquote>
<p><strong>Mal eine allgemeine Frage:</strong><br />
Wenn MFC doch mit C++ 'arbeitet' (wenn auch etwas amateurhaft), warum verwenden dann alle hier C-Funktionen. Man könnte das hier (mal abgesehen vom locale-Problem) doch auch mit std::stringstream's und std::setprecision lösen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> ... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f4a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--light_bulb"
      title=":bulb:"
      alt="💡"
    /> ... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> .</p>
</blockquote>
<p>Ich versuche mich gerade in C++/MFC einzuarbeiten. Wenn ich etwas nicht in C++ sondern in C implementiere, dann weil ich es nicht besser weiß und keine entsprechenden Beispiele habe.</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1177326</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1177326</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Sun, 19 Nov 2006 17:40:32 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Sun, 19 Nov 2006 17:46:56 GMT]]></title><description><![CDATA[<p>zu 1:<br />
Das gibt es für die Express Edition auch, Siehe:<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=373930CB-A3D7-4EA5-B421-DD6818DC7C41&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=373930CB-A3D7-4EA5-B421-DD6818DC7C41&amp;displaylang=en</a><br />
Allerdings kann ich die wegen einem Installationsfehler (Eine Datei ist angeblich nicht vorhanden) nicht installieren.</p>
<p>zu 2:<br />
Achso, dann sorry! Also dann empfehle ich Dir hier mal std::stringstream <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> .<br />
Gehört auch zur Standard-Template-Library von C++...</p>
<p>Hier ein Info-Link:<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcstdlib/html/vclrf_sstream_stringstream.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcstdlib/html/vclrf_sstream_stringstream.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1177330</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1177330</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Sun, 19 Nov 2006 17:46:56 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Sun, 19 Nov 2006 18:04:27 GMT]]></title><description><![CDATA[<p>CodeFinder schrieb:</p>
<blockquote>
<p>zu 1:<br />
Das gibt es für die Express Edition auch, Siehe:<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=373930CB-A3D7-4EA5-B421-DD6818DC7C41&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=373930CB-A3D7-4EA5-B421-DD6818DC7C41&amp;displaylang=en</a><br />
Allerdings kann ich die wegen einem Installationsfehler (Eine Datei ist angeblich nicht vorhanden) nicht installieren.</p>
</blockquote>
<p>Ich benutze VS2005 Prof. mit Lizenz und CDs von der Uni. Da ist MSDN dabei, oder was meinst du ?</p>
<p>CodeFinder schrieb:</p>
<blockquote>
<p>Achso, dann sorry! Also dann empfehle ich Dir hier mal std::stringstream <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> .<br />
Gehört auch zur Standard-Template-Library von C++...</p>
</blockquote>
<p>Mir fehlt leider das entscheidende Beispiel. Ich habe zwar das Buch &quot;Accelerated C++&quot; wo auch bei cin, cout mit streams und setprecision gearbeitet wird - ich sehe aber nicht wie ich das wiederum auf eine Cstring anwenden könnte/sollte.</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1177340</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1177340</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Sun, 19 Nov 2006 18:04:27 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Mon, 12 Feb 2007 15:08:05 GMT]]></title><description><![CDATA[<p>CodeFinder schrieb:</p>
<blockquote>
<p>Wenn MFC doch mit C++ 'arbeitet' (wenn auch etwas amateurhaft), warum verwenden dann alle hier C-Funktionen. Man könnte das hier (mal abgesehen vom locale-Problem) doch auch mit std::stringstream's und std::setprecision lösen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> ...</p>
</blockquote>
<p>Ich bin dafür!</p>
<p>Nur fehlt mir noch immer ein Beispiel wie ich eine Zahl, z.B. als double mit Angabe von setprecision und der Nutzung von streams aus STL an einen CString übergebe, so dass ich das Ergebnis wieder an ein CStatic Element übergeben kann (via SetWindowText)</p>
<p>Bislang ist mir nur klar wie ich mit unschönen C Methoden das ganze zurechtbastle.</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1227467</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227467</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Mon, 12 Feb 2007 15:08:05 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Mon, 12 Feb 2007 15:13:58 GMT]]></title><description><![CDATA[<p>Also ich mache das immer so:</p>
<pre><code class="language-cpp">_gcvt(dDouble, nDigits, chBuffer);
szString = chBuffer;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1227474</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227474</guid><dc:creator><![CDATA[maRKus23]]></dc:creator><pubDate>Mon, 12 Feb 2007 15:13:58 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Mon, 12 Feb 2007 15:21:15 GMT]]></title><description><![CDATA[<p>Auf der Seite <a href="http://msdn2.microsoft.com/en-us/library/0heszx3w(VS.80).aspx" rel="nofollow">http://msdn2.microsoft.com/en-us/library/0heszx3w(VS.80).aspx</a><br />
habe ich eine ganze Liste von kryptischen Funktionen zum Konvertieren gefunden.</p>
<p>Aber ehrlich gesagt würde ich viel lieber solche nehmen, die 1) zu empfehlen sind 2) weniger kryptisch sind.</p>
<p>Abgesehen davon fehlt in dieser Liste einiges, z.B. ein IntToCstrin was ich ebenfalls suche.</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1227479</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227479</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Mon, 12 Feb 2007 15:21:15 GMT</pubDate></item><item><title><![CDATA[Reply to double in string umwandeln, in Hilfe finden on Mon, 12 Feb 2007 15:43:32 GMT]]></title><description><![CDATA[<p>Zuletzt habe ich mich an CString::Format probiert:</p>
<pre><code class="language-cpp">CString buffer;
	buffer.Format(_T(&quot;%i&quot;),i);
	m_WndStaticIterations.SetWindowTextW(buffer);
</code></pre>
<p>und das funktioniert. Das schöne daran ist, dass ich die Genaugigkeit und beliebige Datentypen angeben kann. Das unschöne, dass es C statt C++ Code ist.</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1227492</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227492</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Mon, 12 Feb 2007 15:43:32 GMT</pubDate></item></channel></rss>