<?xml version="1.0" encoding="windows-1250" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>CAD F&#243;rum : chybne kodovanie textu</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : CAD programov&#225;n&#237; : chybne kodovanie textu]]></description>
  <pubDate>Wed, 13 May 2026 07:22:00 +0000</pubDate>
  <lastBuildDate>Thu, 22 Feb 2007 12:03:56 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum/RSS_post_feed.asp?TID=3991</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD F&#243;rum]]></title>
   <url>https://www.cadforum.cz/forum/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum/</link>
  </image>
  <item>
   <title><![CDATA[chybne kodovanie textu : Funguje ;) super dakujeme  ]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19264&amp;title=chybne-kodovanie-textu#19264</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=963">Robo</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 22.úno.2007 v 12:03<br /><br />Funguje ;) super dakujeme]]>
   </description>
   <pubDate>Thu, 22 Feb 2007 12:03:56 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19264&amp;title=chybne-kodovanie-textu#19264</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu :  Tak, uz muzu poslat i soubor...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19085&amp;title=chybne-kodovanie-textu#19085</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=161">alfred</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 16.úno.2007 v 15:29<br /><br />Tak, uz muzu poslat i soubor....<br><br><br><a href="http://www.cadforum.cz/forum/uploads/20070216_152906_replace_unicode.LSP" target="_blank">http://www.cadforum.cz/forum/uploads/20070216_152906_replace_unicode.LSP</a><br><br><br><span style="font-size:10px"><br /><br />Upravil alfred - 16.úno.2007 v 15:33</span>]]>
   </description>
   <pubDate>Fri, 16 Feb 2007 15:29:17 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19085&amp;title=chybne-kodovanie-textu#19085</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : Bohuzel jsem nezjistil, jak se...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19007&amp;title=chybne-kodovanie-textu#19007</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=161">alfred</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 15.úno.2007 v 07:25<br /><br />Bohuzel jsem nezjistil, jak se da prilozit soubor, ale protoze je ten lisp kratky, tak ho sem primo nakopiruji. <br><br>Funkce se spousit prikazem "<font face="Courier New, Courier, mono">ReplUniString</font>". Rovnou projde cely vykres a to vcetne zmrazenych hladin! <br><br><br><br><br><font face="Courier New, Courier, mono">;záměna písma napsaných pomocí kódů %%xxx za písmena.<br>;funguje na TEXT a MTEXT<br>;prochází databázi výkresu - tedy i zmražené hladiny<br>;verze 0.1dev ----- funguje :-)<br>;<br>;<br>;<br>;<br><br>(print "Spouští se příkazem: ReplUniString")<br>(defun c:ReplUniString ( / DestList SrcList i n sel_length ent_sel TextString )<br>&nbsp; ;zde se dají dopsat zaměňované páry (cílový string . hledaný_string)<br>&nbsp;&nbsp;&nbsp; (setq PatternList<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '(<br>&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("á" . "%%225")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ď" . "%%239")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("č" . "%%232")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ě" . "%%236")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("é" . "%%233")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("í" . "%%237")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ö" . "%%246")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ó" . "%%243")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ř" . "%%248")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("š" . "%%154")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ť" . "%%157")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ú" . "%%250")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ů" . "%%249")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ý" . "%%253")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ž" . "%%158")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Á" . "%%193")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ď" . "%%207")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Č" . "%%200")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ě" . "%%204")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("É" . "%%201")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Í" . "%%205")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ö" . "%%214")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ó" . "%%211")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ř" . "%%216")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Š" . "%%138")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ť" . "%%141")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ú" . "%%218")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ů" . "%%217")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ý" . "%%221")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ž" . "%%142")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ň" . "%%242")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ň" . "%%210")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ľ" . "%%190")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ľ" . "%%188")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ä" . "%%228")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ä" . "%%196")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("ü" . "%%252")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ("Ü" . "%%220")<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp; <br>&nbsp; <br>;výběr entit k záměně<br>&nbsp; (setq ent_sel (ssget "_X" '((-4 . "&lt;OR")(0 . "TEXT")(0 . "MTEXT")(-4 . "OR&gt;"))))<br><br>&nbsp; (setq i 0)<br>&nbsp; (if (= ent_sel nil)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; (setq sel_length 0)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; (setq sel_length (SSLENGTH ent_sel))<br>&nbsp; )<br>&nbsp; (print (strcat (rtos sel_length 2 0) " TEXTů a MTEXTů"))(print)<br>&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp; (while (/= i sel_length) ;cyklus na procházení výběru<br>&nbsp;&nbsp;&nbsp; &nbsp;(setq entlist (ENTGET (ssname ent_sel i)))<br>&nbsp;&nbsp;&nbsp; &nbsp;(setq TextString (cdr (assoc 1 entlist)))<br>&nbsp;&nbsp;&nbsp; &nbsp;(setq n 0)<br>&nbsp;&nbsp;&nbsp; &nbsp;(princ TextString)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;(while (/= n&nbsp; (vl-list-length PatternList)) ;cyklus na záměnu všech znaků<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (setq TextString (AlfredSringReplace (cdr (nth n PatternList )) (car (nth n PatternList )) TextString)) ;záměna textu<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (setq n (+ n 1))<br>&nbsp;&nbsp;&nbsp; &nbsp;);while<br>&nbsp;&nbsp;&nbsp; &nbsp;(princ " ----&gt; ")(princ TextString)(print)<br>&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp; ;zapsání textu do entity<br>&nbsp;&nbsp;&nbsp; &nbsp;(setq EntList (subst (cons 1 TextString) (assoc 1 entlist) entlist))<br>&nbsp;&nbsp;&nbsp; &nbsp;(entmod (subst EntList EntList EntList))<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp; (setq i (+ i 1))<br>&nbsp; );while<br>(print)<br>);konec hlavní funkce<br><br><br><br><br>;funkce zamění vyhledaný string za jiný&nbsp; ve stringu<br>;syntaxe: (AlfredSringReplace "hledaný_string" "zaměňovaný_string" "měněný string")<br>(defun AlfredSringReplace (AlfredSrcString AlfredDestString AlfredChangedString / i result)<br>&nbsp; (setq i 0)<br>&nbsp; (while (/= i nil)<br>&nbsp;&nbsp;&nbsp; ;(vl-string-search pattern string &#091;start-pos&#093;)<br>&nbsp;&nbsp;&nbsp; (setq i (vl-string-search AlfredSrcString AlfredChangedString i))<br>&nbsp;&nbsp;&nbsp; (if (/= i nil)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;(vl-string-subst new-str pattern string &#091;start-pos&#093;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq AlfredChangedString (vl-string-subst&nbsp; AlfredDestString AlfredSrcString AlfredChangedString i))<br>&nbsp;&nbsp;&nbsp; )<br>&nbsp; );while<br>&nbsp; <br>&nbsp; (setq AlfredChangedString AlfredChangedString) ;!! musí být na konci funkce - návratová hodnota<br>);konec funkce "AlfredSringReplace"<br><br><br>(print)<br></font><br>]]>
   </description>
   <pubDate>Thu, 15 Feb 2007 07:25:15 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19007&amp;title=chybne-kodovanie-textu#19007</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : Kdy&#382; jsem je&#353;t&#283; m&#283;l R11 co k&#243;dovala...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19006&amp;title=chybne-kodovanie-textu#19006</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=98">Kotlaba</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 15.úno.2007 v 06:17<br /><br />Když jsem ještě měl R11 co kódovala češtinu podle DOS a dostal se ke mně občas výkres z LT s kódováním Windows, opatřil jsem si fonty z LT. Editovat to sice moc nešlo ale číst a tisknout se to dalo.]]>
   </description>
   <pubDate>Thu, 15 Feb 2007 06:17:24 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19006&amp;title=chybne-kodovanie-textu#19006</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : To Alfred: Nemohl bysteutilitu...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19000&amp;title=chybne-kodovanie-textu#19000</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=270">PepaR</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 14.úno.2007 v 19:56<br /><br />To Alfred: Nemohl byste&nbsp;utilitu zde vyvěsit prosím? Taky by se mi hodila... Děkuji]]>
   </description>
   <pubDate>Wed, 14 Feb 2007 19:56:35 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=19000&amp;title=chybne-kodovanie-textu#19000</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : Mam na to nekde vlastni lisp utilitku,...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18999&amp;title=chybne-kodovanie-textu#18999</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=161">alfred</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 14.úno.2007 v 19:24<br /><br />Mam na to nekde vlastni lisp utilitku, ktera zamenuje ceske znaky. Zitra se muzu klidne v praci podivat. Jestli ji najdu, muzu Vam ji poslat.]]>
   </description>
   <pubDate>Wed, 14 Feb 2007 19:24:44 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18999&amp;title=chybne-kodovanie-textu#18999</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu :  Mam na to vlastni lisp utilitku,...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18998&amp;title=chybne-kodovanie-textu#18998</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=161">alfred</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 14.úno.2007 v 19:23<br /><br />Mam na to vlastni lisp utilitku, ktera zamenuje ceske znaky. Zitra se muzu klidne v praci podivat.<br><br><br><br>ajaj, vidim, ze jsem odpoved poslal dvakrat.... <img src="https://www.cadforum.cz/forum/smileys/smiley9.gif" border="0" align="absmiddle" alt="Embarrassed" /><br><span style="font-size:10px"><br /><br />Upravil alfred - 15.úno.2007 v 07:29</span>]]>
   </description>
   <pubDate>Wed, 14 Feb 2007 19:23:41 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18998&amp;title=chybne-kodovanie-textu#18998</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : P&#345;esn&#283; tak. Jedn&#237;m kliknut&#237;m zm&#283;n&#237;te...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18980&amp;title=chybne-kodovanie-textu#18980</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=33">Mantlík</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 14.úno.2007 v 10:45<br /><br />Přesně tak. Jedním kliknutím změníte např. všechny %%193 na Á v celém výkresu (pokud to tak vyberete). A těch písmenek zas není tolik ......<DIV>Vezmete-li, co všechno musíte s DWG z DGN udělat, aby to pak fungovalo korektně, tak ta čtvrthodinka se v tom už ztratí</DIV><DIV>&nbsp;</DIV><DIV>A na ty utilitky&nbsp; (WNEWCP - či jak se to jmenovalo) bych nesázel. Jednak mi to s Microstationem nikdy nezafungovalo a jednak musely být všechny znaky korektně dle jednotlivých codepage, jinak se rozhodily zase jiné znaky</DIV>]]>
   </description>
   <pubDate>Wed, 14 Feb 2007 10:45:08 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18980&amp;title=chybne-kodovanie-textu#18980</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : Hromadn&#233; nahrazen&#237; znak&#367; (v&#269;etn&#283;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18979&amp;title=chybne-kodovanie-textu#18979</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 14.úno.2007 v 10:42<br /><br />Hromadné nahrazení znaků (včetně řídících znaků) řízené definiční převodní tabulkou dělá utilita Xanadu ReCoder - viz:<DIV><a href="http://www.cadforum.cz/cadforum/qaID.asp?tip=1741" target="_blank">http://www.cadforum.cz/cadforum/qaID.asp?tip=1741</A></DIV>]]>
   </description>
   <pubDate>Wed, 14 Feb 2007 10:42:12 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18979&amp;title=chybne-kodovanie-textu#18979</guid>
  </item> 
  <item>
   <title><![CDATA[chybne kodovanie textu : Kdysi jsem se t&#237;m setkal. V&#253;kres...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18977&amp;title=chybne-kodovanie-textu#18977</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=98">Kotlaba</a><br /><strong>Předmět:</strong> 3991<br /><strong>Zasláno:</strong> 14.úno.2007 v 10:36<br /><br />Kdysi jsem se tím setkal. Výkres jsem si převedl do DXF co nejnižší verze a napsal jsem si prográmek v BASICu co četl ten soubor znak po znaku, hledal tam znak procento a když jej našel, kouknul se co je dál a pak tu skupinu nahradil správným kódem.]]>
   </description>
   <pubDate>Wed, 14 Feb 2007 10:36:28 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=3991&amp;PID=18977&amp;title=chybne-kodovanie-textu#18977</guid>
  </item> 
 </channel>
</rss>