<?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: Add/Subtract numbers in texts in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007797#M121379</link>
    <description>&lt;P&gt;Now that is so shortsighted! As a rule, any time you spend on learning to code in Visual Lisp to solve small or big problems in your work is earned back in multiples.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Apr 2017 21:13:23 GMT</pubDate>
    <dc:creator>wkmvrij</dc:creator>
    <dc:date>2017-04-10T21:13:23Z</dc:date>
    <item>
      <title>Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007542#M121374</link>
      <description>&lt;P&gt;I have a lot of texts that need to be modified like this one: TC=50.12&lt;/P&gt;&lt;P&gt;Is it possible to input a number to add/subtract the value in that text?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know there are other threads with similar discussion like this &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-help-need-to-to-number-in-text-string/td-p/3195970" target="_blank"&gt;one&lt;/A&gt;, but it doesn't apply to this particular problem I'm having.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 19:14:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007542#M121374</guid>
      <dc:creator>oli-123</dc:creator>
      <dc:date>2017-04-10T19:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007659#M121375</link>
      <description>&lt;P&gt;If you know the prefix is always 2 chars and an Equal sign then you simply step through each text entity, get the value, apply substr, then convert the string to a float apply your add factor and then rebuild and update the text value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a piece to get you started. All that is left is to set up a system to step through &amp;nbsp;selection set instead of picking a single entity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun c:quick()&lt;BR /&gt; (setq myaddvalue 2.4&lt;BR /&gt; mytextent (car (entsel "\nSelect Text String"))&lt;BR /&gt; mytextdata (entget mytextent)&lt;BR /&gt; mytextvalue (cdr (assoc 1 mytextdata))&lt;BR /&gt; mytextprefix (substr mytextvalue 1 3)&lt;BR /&gt; mytextnumber (substr mytextvalue 4 (1- (strlen mytextvalue)))&lt;BR /&gt; myoldvalue (assoc 1 mytextdata)&lt;BR /&gt; mynewvalue (cons 1 (strcat mytextprefix (rtos (+ (atof mytextnumber) myaddvalue) 2 4)))&lt;BR /&gt; myentdata (subst mynewvalue myoldvalue mytextdata)&lt;BR /&gt; )&lt;BR /&gt; (entmod myentdata)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 20:00:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007659#M121375</guid>
      <dc:creator>SeeMSixty7</dc:creator>
      <dc:date>2017-04-10T20:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007686#M121376</link>
      <description>&lt;P&gt;Try &lt;A href="http://www.cadstudio.cz/en/apps/numintext/" target="_self"&gt;THIS&lt;/A&gt;&amp;nbsp;freeware routine by CAD Studio, it handles more than add/subtracting numbers within a text.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 20:19:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007686#M121376</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2017-04-10T20:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007742#M121377</link>
      <description>&lt;P&gt;I think I posted this not that long ago, but I don't know where it went, so here it is again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDITNUM.lsp (attached)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;; Adjusts any imbedded numeric strings of a selection set of text entities.&lt;/P&gt;
&lt;P&gt;; v2.4 (3-1-96) added (max ... (@prec $cv_diff)) in line 133&lt;BR /&gt; ; v2.5 (3-4-96) changed @prec to @rprec for real and added @sprec for strings.&lt;BR /&gt; ; v2.6 (12-11-99) added multiplcation option as requested by Jeremy Lange of&lt;BR /&gt; ; Maser (Toms River); also added numeric text filter '(1 . "*#*")&lt;BR /&gt; ; v15.00 (04-07-00) for R15&lt;BR /&gt; ; (12-17-00) added multiple picks for Picklayer option&lt;BR /&gt; ; v15.01 (09-05-02) added support for Inserts with Attributes&lt;BR /&gt; ; v15.02 (01-09-03) revised to update attributes.&lt;BR /&gt; ; v15.03 (02-24-04) revised to try and handle K&amp;amp;K's large number.&lt;BR /&gt; ; v17.00 (03-03-09) revised to handle Mtext&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 20:51:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007742#M121377</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-04-10T20:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007770#M121378</link>
      <description>&lt;P&gt;Thanks all! I wish I can learn some LISP, but I wish I have time for that. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 21:03:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007770#M121378</guid>
      <dc:creator>oli-123</dc:creator>
      <dc:date>2017-04-10T21:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007797#M121379</link>
      <description>&lt;P&gt;Now that is so shortsighted! As a rule, any time you spend on learning to code in Visual Lisp to solve small or big problems in your work is earned back in multiples.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 21:13:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7007797#M121379</guid>
      <dc:creator>wkmvrij</dc:creator>
      <dc:date>2017-04-10T21:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7010666#M121380</link>
      <description>&lt;P&gt;Didn't you know? &amp;nbsp;Myopic people never have enough time to see things through. &amp;nbsp;:]&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 22:43:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/7010666#M121380</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-04-11T22:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/8005916#M121381</link>
      <description>&lt;P&gt;thx&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;you are a cad god...&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 13:35:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/8005916#M121381</guid>
      <dc:creator>pproestos</dc:creator>
      <dc:date>2018-05-16T13:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058084#M121382</link>
      <description>&lt;P&gt;Is there any way to make this (or something similar) work on Mleaders with MText? I have routines that will update regular text, mtext, mleaders with attibutes, attributed blocks...but none of them work on an mleader with mtext.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got two sites that have a datum change and need to adjust all of the spot elevations by a constant amount.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 20:49:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058084#M121382</guid>
      <dc:creator>jallen_cph</dc:creator>
      <dc:date>2019-09-30T20:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058100#M121383</link>
      <description>&lt;P&gt;please upload your-sample.dwg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 20:54:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058100#M121383</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2019-09-30T20:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058137#M121384</link>
      <description>&lt;P&gt;I can't upload the actual files due to client privileges but here is dwg with the mleader style in question. The goal is to adjust all of the spot shots in the design file by a constant amount, in this case -0.87.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference I'm running Civil3D 2019 but these are not Civil 3D projects.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 21:07:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058137#M121384</guid>
      <dc:creator>jallen_cph</dc:creator>
      <dc:date>2019-09-30T21:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058174#M121385</link>
      <description>The EDITNUM.lsp I posted I believe works on TEXT, MTEXT, and ATTRIBs.&lt;BR /&gt;I am ignorant as to whether MTEXT is a separate entity from an MLEADER.&lt;BR /&gt;Just try it out.  It won't bite you.&lt;BR /&gt;&lt;BR /&gt;It is especially good for datum changes because if one (1) Mtext has two&lt;BR /&gt;lines, like...&lt;BR /&gt;TC 120.54&lt;BR /&gt;G 120.01&lt;BR /&gt;It will adjust both numbers.</description>
      <pubDate>Mon, 30 Sep 2019 21:18:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058174#M121385</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2019-09-30T21:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058180#M121386</link>
      <description>&lt;P&gt;John: I tried your lisp but it won't select an mleader for me, just says 0 found.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 21:21:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058180#M121386</guid>
      <dc:creator>jallen_cph</dc:creator>
      <dc:date>2019-09-30T21:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058376#M121387</link>
      <description>Okay then.  I'll try to crank up my C3D 2016 and see what an MLEADER is&lt;BR /&gt;made of and add that capability.  Just don't expect it any time soon.  My&lt;BR /&gt;computer "fun time" is strictly monitored.  No, not by me. (Right now she&lt;BR /&gt;thinks I'm paying bills).</description>
      <pubDate>Mon, 30 Sep 2019 23:27:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058376#M121387</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2019-09-30T23:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058398#M121388</link>
      <description>&lt;PRE&gt;(setq value-to-add(getreal "\n State value to add "))
       
(VLAX-FOR MULTILEADER MULTILEADER-vl-ss
  (setq MULTILEADER-string (vla-Get-textString  MULTILEADER))
  (setq old-value(atoi MULTILEADER-string ))
(setq new-value (+ old-value value-to-add))
(setq new-string (rtos new-value 2 2))
 (VLA-PUT-TEXTSTRING MULTILEADER new-string)      
 )     &lt;/PRE&gt;</description>
      <pubDate>Mon, 30 Sep 2019 23:44:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058398#M121388</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2019-09-30T23:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058431#M121389</link>
      <description>&lt;P&gt;Thanks for saving me the research.&lt;/P&gt;
&lt;P&gt;The slight difference my EDITNUM has is that it operates on all numeric values within a text string and can handle super large values (Keller &amp;amp; Kirkpatrick had a tax map numbering project that had like 20-place integers/reals).&amp;nbsp; Come to think of it, I think it maintains the precision unless the precision of the additive is greater than the precision of the existing (unless of course if the existing were to 1 place but the sum was to 2 places but with a trailing zero, in which case the 1 place would be honored).&amp;nbsp; I probably made like $1.23 per hour, but they were happy.&amp;nbsp; Anyway, that's infinitely more than any of us makes around this place.&lt;/P&gt;
&lt;P&gt;There is no denying the gratitude, but gratitude doesn't pay any of my bills.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 00:24:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9058431#M121389</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2019-10-01T00:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062054#M121390</link>
      <description>&lt;P&gt;I checked out my code and it's easy to add MLEADERs.&amp;nbsp; Um, but what is an MLEADER's dxf 0 name?&amp;nbsp; What about its ObjectName?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 12:20:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062054#M121390</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2019-10-02T12:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062118#M121391</link>
      <description>&lt;P&gt;Thanks John, I do appreciate you taking the time to look into this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ObjectName is AcDbMLeader isn't it? As far as the DXF 0, I don't see that listed in the group codes for Mleaders. DXF 172 is content type, and 290 is listed as hasMtext. But, I really don't know what I'm looking at beyond some basic lisp writing lol.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 12:49:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062118#M121391</guid>
      <dc:creator>jallen_cph</dc:creator>
      <dc:date>2019-10-02T12:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062129#M121392</link>
      <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;I gave Adesk feedback, Adesk had to fix MLEADER and use MULTILEADER in the DXF / LISP help.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AutoDesk help pages url:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://help.autodesk.com/view/ACD/2020/ENU/" target="_blank" rel="noopener"&gt;http://help.autodesk.com/view/&lt;STRONG&gt;&lt;FONT color="#339966"&gt;ACD&lt;/FONT&gt;&lt;/STRONG&gt;/&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;2020&lt;/FONT&gt;&lt;/STRONG&gt;/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;ENU&lt;/FONT&gt;&lt;/STRONG&gt;/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;Productnames ACD/ACDLT/AMECHPP/ARCHDESK/CIV3D/...&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF6600"&gt;Productversion 2015/2016/2017/2018/2019/2020/...&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;FONT color="#FF0000"&gt;Productlanguage ENU/DEU/FRA/...&lt;/FONT&gt; &lt;EM&gt;&lt;FONT color="#333333"&gt;(you can change the language also on the help page, in the upper right corner)&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;FONT color="#333333"&gt;Samples&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;FONT color="#333333"&gt;Programming section &lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;FONT color="#333333"&gt;&lt;A href="http://help.autodesk.com/view/OARX/2020/ENU/" target="_blank"&gt;http://help.autodesk.com/view/OARX/2020/ENU/&lt;/A&gt; &lt;BR /&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://help.autodesk.com/view/OARX/2020/ENU/?guid=GUID-235B22E0-A567-4CF6-92D3-38A2306D73F3" target="_blank" rel="noopener"&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;FONT color="#333333"&gt;DXF Reference&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;FONT color="#333333"&gt;&lt;FONT color="#999999"&gt;&lt;STRIKE&gt;MLEADER&lt;/STRIKE&gt;&lt;/FONT&gt; &lt;A href="http://help.autodesk.com/view/OARX/2020/ENU/?guid=GUID-72D20B8C-0F5E-4993-BEB7-0FCF94F32BE0" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;MULTILEADER&lt;/STRONG&gt; - DXF&lt;/A&gt; &lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 12:52:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062129#M121392</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2019-10-02T12:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Add/Subtract numbers in texts</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062133#M121393</link>
      <description>To see what the DXF code 0 is, do an (entget (car (entsel)))</description>
      <pubDate>Wed, 02 Oct 2019 12:53:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/add-subtract-numbers-in-texts/m-p/9062133#M121393</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2019-10-02T12:53:00Z</dc:date>
    </item>
  </channel>
</rss>

