<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Remove Character Formatting From Tables in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148335#M105251</link>
    <description>&lt;P&gt;I wish to keep "new lines" information. It can be also done as a choice how to treat "new lines".&lt;/P&gt;</description>
    <pubDate>Thu, 11 Mar 2021 13:51:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-03-11T13:51:35Z</dc:date>
    <item>
      <title>Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7987671#M105238</link>
      <description>&lt;P&gt;Can anyone&amp;nbsp;confirm there's no way to globally remove character formatting from tables?&amp;nbsp; I've done quite a bit of searching and found little on the topic.&amp;nbsp; Some search results mentioned the&amp;nbsp;StripMtext LISP but that didn't work (I'm using AutoCAD 2017).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found out a bill of material drawing I created had a different font selected which overrides the text style.&amp;nbsp; I never noticed because it displayed as simplex on my machine which is my&amp;nbsp;default alternate font.&amp;nbsp; Anyway, it took quite awhile to manually remove the character formatting and I figured there must be a easier way.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 15:30:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7987671#M105238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-08T15:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7987908#M105239</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Can anyone&amp;nbsp;confirm there's no way to globally remove character formatting from tables?&amp;nbsp; ..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you referring to ACAD_TABLE or something else?&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 16:54:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7987908#M105239</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2018-05-08T16:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7987919#M105240</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="table.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/498013iC9E551ABD3546E3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="table.JPG" alt="table.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 16:58:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7987919#M105240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-08T16:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7988214#M105241</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:stripFormT  ( / LM:UnFormat table col row)
(defun LM:UnFormat ( str mtx / _Replace regex ) (vl-load-com)
  ;; © Lee Mac 2010
  
  (defun _Replace ( new old str )
    (vlax-put-property regex 'pattern old) (vlax-invoke regex 'replace str new)
  )
  (setq regex (vlax-get-or-create-object "VBScript.RegExp"))  
  (mapcar
    (function
      (lambda ( x ) (vlax-put-property regex (car x) (cdr x)))
    )
    (list (cons 'global actrue) (cons 'ignorecase acfalse) (cons 'multiline actrue))
  )
  (mapcar
    (function
      (lambda ( x ) (setq str (_Replace (car x) (cdr x) str)))
    )
   '(
      ("Ð"       . "\\\\\\\\")
      (" "       . "\\\\P|\\n|\\t")
      ("$1"      . "\\\\(\\\\[ACcFfHLlOopQTW])|\\\\[ACcFfHLlOopQTW][^\\\\;]*;|\\\\[ACcFfHLlOopQTW]")
      ("$1$2/$3" . "([^\\\\])\\\\S([^;]*)[/#\\^]([^;]*);")
      ("$1$2"    . "\\\\(\\\\S)|[\\\\](})|}")
      ("$1"      . "[\\\\]({)|{")
    )
  )
  (setq str
    (if mtx
      (_Replace "\\\\" "Ð" (_Replace "\\$1$2$3" "(\\\\[ACcFfHLlOoPpQSTW])|({)|(})" str))
      (_Replace "\\"   "Ð" str)
    )
  )
  (vlax-release-object regex)
  str
)
  
 (if
   (setq table (ssget "_:S:E:L" '((0 . "ACAD_TABLE" ))))
   (progn
     (vla-put-regeneratetablesuppressed (setq table (vlax-ename-&amp;gt;vla-object (ssname table 0)))  :vlax-true)
     (setq row (1- (vlax-get table 'Rows)))
     (setq col (vlax-get table 'Columns))
     
     (repeat row
     	((lambda (n)
	   	(repeat n
		  (setq n (1- n))
		  	(if (/= (setq f (vlax-invoke table 'GetText row n)) "")
			  (progn
				(setq unformatted (LM:UnFormat f nil))
		  		(vlax-invoke table 'SetText row n unformatted)))
		  			
					   )
		  		)
					  col
					)
	   (setq row (1- row))
       )
     (vla-put-regeneratetablesuppressed table :vlax-false)
     )
   )
  (princ)
  
  )&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 May 2018 19:07:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7988214#M105241</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2018-05-08T19:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7988304#M105242</link>
      <description>&lt;P&gt;Worked like a charm!&amp;nbsp; I didn't see this on his website but thank you for posting it!&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 19:51:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/7988304#M105242</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-08T19:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/8310656#M105243</link>
      <description>&lt;P&gt;This is a wonderful lisp, can it be modified to unlock cells if necessary? And to select multiple tables?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did try, but I can't seem to get past the lambda statements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks if you can help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steven Kemp&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 17:24:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/8310656#M105243</guid>
      <dc:creator>SKEMPP</dc:creator>
      <dc:date>2018-10-03T17:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/8386771#M105244</link>
      <description>&lt;P&gt;OMG, thx! Works like a clock, solid!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 18:29:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/8386771#M105244</guid>
      <dc:creator>sharpl</dc:creator>
      <dc:date>2018-11-07T18:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10130188#M105245</link>
      <description>&lt;P&gt;A SOLID LISP!!!!! WORKS GREAT!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 14:48:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10130188#M105245</guid>
      <dc:creator>mnorris</dc:creator>
      <dc:date>2021-03-04T14:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10147610#M105246</link>
      <description>&lt;P&gt;This script works almost perfect. Unfortunately it doesn't remove prefix from table text which looks like this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;{\fCalibri|b0|i0;&lt;/LI-CODE&gt;&lt;P&gt;What could I change in this code to remove it?&lt;/P&gt;&lt;P&gt;I have in my table texts looks like below:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;{\fCalibri|b0|i0;TEXT line 1

TEXT line 2

TEXT line 3&lt;/LI-CODE&gt;&lt;P&gt;I need to look this like below:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;TEXT line 1

TEXT line 2

TEXT line 3&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 11 Mar 2021 09:09:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10147610#M105246</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-11T09:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10147804#M105247</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This script works almost perfect. Unfortunately it doesn't remove prefix from table text which looks like this:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;{\fCalibri|b0|i0;&lt;/LI-CODE&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because there could be more issues to find, which is more likely than not. please post a sample drawing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 10:25:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10147804#M105247</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-03-11T10:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10147878#M105248</link>
      <description>&lt;P&gt;Thank you for answer, I'm attaching files:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Data_source_Excel.xlsx - Excel with sample data&lt;/LI&gt;&lt;LI&gt;stripFormT-usun_formatowanie_tekstu_w_tabeli.lsp - script in LSP file (the same as in this thread)&lt;/LI&gt;&lt;LI&gt;Table_remove_formating_CAD.dwg - Sample drawing with table before and after the script.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 11 Mar 2021 11:03:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10147878#M105248</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-11T11:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148154#M105249</link>
      <description>&lt;P&gt;I also found that formatting depends if there are any changes inside text (bold, color change).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is no formatting inside text has value:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Entity value=
(1 . "{\\fCalibri|b0|i0;Simple text 1\n\nSimple text 2\n\nSimple text 3")

Text value=
{\\fCalibri|b0|i0;Simple text 1\n\nSimple text 2\n\nSimple text 3&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="no_formatting_inside.png" style="width: 460px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/891802iDA78FA3034D5FAE0/image-size/large?v=v2&amp;amp;px=999" role="button" title="no_formatting_inside.png" alt="no_formatting_inside.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If there is some formatting inside text has value:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Entity value=
(1 . "{\\fCalibri|b0|i0|c1|p0;Simple text 1\n\\fCalibri|b1|i0|c1|p0;\\C3;\nSimple text 2\\fCalibri|b0|i0|c1|p0;\\C0;\n\nSimple text 3}")

Text value=
{\\fCalibri|b0|i0|c1|p0;Simple text 1\n\\fCalibri|b1|i0|c1|p0;\\C3;\nSimple text 2\\fCalibri|b0|i0|c1|p0;\\C0;\n\nSimple text 3}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="with_formatting_inside.png" style="width: 461px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/891803i8E4584E5199D862B/image-size/large?v=v2&amp;amp;px=999" role="button" title="with_formatting_inside.png" alt="with_formatting_inside.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In both situations I wish to get &lt;STRONG&gt;as result only texts and new line chars&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Entity value=
(1 . "Simple text 1\n\nSimple text 2\n\nSimple text 3")

Text value=
Simple text 1\n\nSimple text 2\n\nSimple text 3&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached new DWG file with changed texts in tables.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 12:55:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148154#M105249</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-11T12:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148300#M105250</link>
      <description>&lt;P&gt;&lt;FONT size="3"&gt;And how are you expecting the results to look? does it keep the "new lines" flag&lt;/FONT&gt;&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;Simple text 1 &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;Simple text 2 &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;Simple text 3&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="3"&gt;or simply&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;Simple text 1 Simple text 2 Simple text 3&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT size="3"&gt;EDIT: I wasnt paying attention at all, you already mentioned it at post #9&lt;/FONT&gt; &lt;FONT color="#000000"&gt;[ silly me ]&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 13:54:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148300#M105250</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-03-11T13:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148335#M105251</link>
      <description>&lt;P&gt;I wish to keep "new lines" information. It can be also done as a choice how to treat "new lines".&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 13:51:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148335#M105251</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-11T13:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148721#M105252</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I wish to keep "new lines" information. It can be also done as a choice how to treat "new lines".&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Primary reason why the code doesn't do anything is because it skips the header, [ 0 = row 1 ]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;command:&amp;nbsp;STRIPFORMT&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Keep new line format [Yes/No]:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;HTH&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 15:42:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10148721#M105252</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-03-11T15:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10149717#M105253</link>
      <description>&lt;P&gt;Amazing work! It works exactly as I dreamed it! Thank you very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW: It is a very good idea that the option to keep "new lines" is set as the default.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 20:35:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/10149717#M105253</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-11T20:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/11274812#M105254</link>
      <description>&lt;P&gt;Thanks for this,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to modify this in Sublime text and after reindentation, this doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use 2 spaces as my indentation btw if that makes a difference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you know where this problem lies? I can't find it. Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just found that &lt;A href="https://github.com/jschnees/AutoCAD/blob/master/StripMtext%20v5-0c.lsp" target="_blank" rel="noopener"&gt;StripMtext Version 5.0c&lt;/A&gt; does strip formatting from tables too. Seems to do the same anyway.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jul 2022 23:40:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/11274812#M105254</guid>
      <dc:creator>3dwannab</dc:creator>
      <dc:date>2022-07-03T23:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/12449325#M105255</link>
      <description>&lt;P&gt;In AutoCAD 2021 and 2024 (that I have tested) the stripformt routine seems to delete also the contents of all the cells of the table not only the format, does anyone know why this happens? Whereas, in 2018 it works fine. Has autodesk changed anything in the coding in between the versions? Has anyone encountered the same issue?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 23:37:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/12449325#M105255</guid>
      <dc:creator>spyros.maroudas.1991</dc:creator>
      <dc:date>2023-12-18T23:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/12450398#M105256</link>
      <description>&lt;P&gt;I've used the Lisp on many tables in 2024 and have not had an issue yet.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 13:33:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/12450398#M105256</guid>
      <dc:creator>mnorris</dc:creator>
      <dc:date>2023-12-19T13:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character Formatting From Tables</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/12586822#M105257</link>
      <description>&lt;P&gt;It wont work for me in ACAD (vanilla) 2023.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 00:17:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remove-character-formatting-from-tables/m-p/12586822#M105257</guid>
      <dc:creator>stewart_carberry</dc:creator>
      <dc:date>2024-02-28T00:17:34Z</dc:date>
    </item>
  </channel>
</rss>

