<?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 text to line lisp required in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260255#M172574</link>
    <description>&lt;P&gt;Dear Experts, Thank you for helping me whenever i am in trouble,&lt;/P&gt;&lt;P&gt;I need a lisp which can draw line from the x,y values from the selected text (not mtext). In my case X value starts with E &amp;amp; Y value starts with N as preceding text&lt;/P&gt;&lt;P&gt;Example : E406755, N2746409&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2026 13:54:08 GMT</pubDate>
    <dc:creator>ash19854</dc:creator>
    <dc:date>2026-09-09T13:54:08Z</dc:date>
    <item>
      <title>text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260255#M172574</link>
      <description>&lt;P&gt;Dear Experts, Thank you for helping me whenever i am in trouble,&lt;/P&gt;&lt;P&gt;I need a lisp which can draw line from the x,y values from the selected text (not mtext). In my case X value starts with E &amp;amp; Y value starts with N as preceding text&lt;/P&gt;&lt;P&gt;Example : E406755, N2746409&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2026 13:54:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260255#M172574</guid>
      <dc:creator>ash19854</dc:creator>
      <dc:date>2026-09-09T13:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260325#M172576</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3710982"&gt;@ash19854&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;.... from the x,y values from the selected text .... E&lt;/SPAN&gt;xample : E406755, N2746409&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are they in one Text object together, always with the comma and space between, and always with E first?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2026 14:35:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260325#M172576</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-09T14:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260472#M172577</link>
      <description>&lt;P&gt;2 separate text entities and no comma&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2026 16:21:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260472#M172577</guid>
      <dc:creator>ash19854</dc:creator>
      <dc:date>2026-09-09T16:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260567#M172578</link>
      <description>&lt;P&gt;Something like this, perhaps?&amp;nbsp; Minimally tested:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun C:TEST (/ ss Etxt Ntxt)
  (if
    ;; picked 2 Text objects, one of which starts with E &amp;amp; at least
    ;; one number, and the other with N &amp;amp; at least one number?
    (and
      (setq ss (ssget '((0 . "TEXT") (1 . "E#*,N#*"))))
      (= (sslength ss) 2)
      (setq Etxt (ssname (ssget "_P" '((1 . "E*"))) 0))
      (setq Ntxt (ssname (ssdel Etxt ss) 0))
      (wcmatch (getpropertyvalue Ntxt "TextString") "N*")
    ); and
    (command "_.line" ; then
      "_non"
      (strcat
        (substr (getpropertyvalue Etxt "TextString") 2)
        ","
        (substr (getpropertyvalue Ntxt "TextString") 2)
      ); strcat
    ); command [leaves you in it to finish]
    (prompt "\nDid not select correct combination of two Text objects."); else
  ); if
  (prin1)
)&lt;/LI-CODE&gt;
&lt;P&gt;It doesn't matter how you pick the two, nor if picked individually, in which order you pick them.&lt;/P&gt;
&lt;P&gt;It leaves you in the Line command that it started from those coordinates, to go where you want with it, to any number of segments.&lt;/P&gt;
&lt;P&gt;It requires &lt;EM&gt;capital&lt;/EM&gt; E and N, but could be made to allow lower-case.&lt;/P&gt;
&lt;P&gt;It assumes the numerical parts of the Text content will be in a format that AutoCAD can take as X,Y input -- for example no thousands comma separator, but decimals or even fractions [formatted correctly] are OK.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2026 20:27:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260567#M172578</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-09T20:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260983#M172579</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_heart_eyes:"&gt;😍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2026 04:38:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14260983#M172579</guid>
      <dc:creator>ash19854</dc:creator>
      <dc:date>2026-09-10T04:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14261397#M172581</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3710982"&gt;@ash19854&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_heart_eyes:"&gt;😍&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You're welcome, and thank &lt;EM&gt;you&lt;/EM&gt; -- you just put me over the edge to &lt;STRONG&gt;4000 accepted solutions!&lt;/STRONG&gt;&amp;nbsp; One every other day, approximately, and every 7th post on average, over the last 22 years or so of participating here.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2026 11:53:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14261397#M172581</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-10T11:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14262277#M172583</link>
      <description>&lt;DIV&gt;4,000 accepted solutions unlocked! You are a community legend.&lt;BR /&gt;Congratulations&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Sep 2026 03:40:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14262277#M172583</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2026-09-11T03:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14263518#M172591</link>
      <description>&lt;P&gt;Congratulations that is a significant number of "Accepted Solutions" let alone how many post that would be. 20,000 + ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just a suggestion&amp;nbsp;(1 . "E#*,E #*,N#*,N #*") often the text has a space.&amp;nbsp; For another person looking for similar solution. The "e 1234 &amp;amp; n 5678" worked fine with ssget. Where I am in AUS we don't tend to label the E &amp;amp; N.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 02:29:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14263518#M172591</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2026-09-12T02:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14263812#M172594</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... how many post that would be. 20,000 + ?&lt;/P&gt;
&lt;P&gt;....&amp;nbsp;(1 . "E#*,E #*,N#*,N #*") often the text has a space.&amp;nbsp; ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's worse than that:&amp;nbsp; 2&lt;STRONG&gt;8&lt;/STRONG&gt;,000+.&amp;nbsp; [Hover over anyone's user name to see how many messages they've posted, how many solutions, etc.]&lt;/P&gt;
&lt;P&gt;Yes, I thought of the possibility of a space.&amp;nbsp; I just went with the OP's example content [after they answered my other questions about it].&amp;nbsp; And if there could be a space, could there be two?&amp;nbsp; Etc.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 11:49:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14263812#M172594</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-12T11:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264310#M172596</link>
      <description>&lt;P&gt;In Some drawings XY Value texts are given with space for example E 123 456 &amp;amp; N 1 234 567 as separate text entities, is it possible to modify the same lisp so that it works with / without space please?. The program should ignore the spaces and should consider only numerical values mentioned therin. Thank you&lt;/P&gt;</description>
      <pubDate>Sun, 13 Sep 2026 06:20:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264310#M172596</guid>
      <dc:creator>ash19854</dc:creator>
      <dc:date>2026-09-13T06:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264435#M172597</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3710982"&gt;@ash19854&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;In Some drawings XY Value texts are given with space for example E 123 456 &amp;amp; N 1 234 567....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It would have been better to have known that initially.&lt;/P&gt;
&lt;P&gt;Try this [also minimally tested]:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun C:TEST (/ stripspaces ss Etxt Ntxt Estr Nstr)
  (defun stripspaces (str)
    (while (wcmatch str "* *"); still contains space(s)
      (setq str (vl-string-subst "" " " str)); replace with nothing
    ); while
    str ; feed out to function
  ); defun
  (if
    ;; picked 2 Text objects, one of which starts with E &amp;amp; at least
    ;; one number, and the other with N &amp;amp; at least one number,
    ;; either or both with or without space(s)?
    (and
      (setq ss (ssget '((0 . "TEXT") (1 . "E#*,E #*,N#*,N #*"))))
      (= (sslength ss) 2)
      (setq Etxt (ssname (ssget "_P" '((1 . "E*"))) 0))
      (setq Ntxt (ssname (ssdel Etxt ss) 0))
      (wcmatch (getpropertyvalue Ntxt "TextString") "N*,N #*")
    ); and
    (progn ; then
      (setq
        Estr (getpropertyvalue Etxt "TextString")
        Nstr (getpropertyvalue Ntxt "TextString")
        Estr (stripspaces Estr) 
        Nstr (stripspaces Nstr)
      ); setq
      (command "_.line"
        "_non"
        (strcat
          (substr Estr 2)
          ","
          (substr Nstr 2)
        ); strcat
      ); command [leaves you in it to finish]
    ); progn
    (prompt "\nDid not select correct combination of two Text objects."); else
  ); if
  (prin1)
)&lt;/LI-CODE&gt;
&lt;P&gt;It won't work if there are&amp;nbsp;&lt;EM&gt;more than one&lt;/EM&gt; space between the letter and the first numerical character, but there can be multiple spaces further in, between numerical substrings.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Sep 2026 10:46:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264435#M172597</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-13T10:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264440#M172598</link>
      <description>&lt;P&gt;Thank you a lot, you are a great mentor. It was indeed a big help and may god bless you with lot of success .&lt;/P&gt;</description>
      <pubDate>Sun, 13 Sep 2026 10:58:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264440#M172598</guid>
      <dc:creator>ash19854</dc:creator>
      <dc:date>2026-09-13T10:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264793#M172599</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;For the task of getting number in a string like this I use Lee-mac lisp,&amp;nbsp;&lt;A href="https://www.lee-mac.com/parsenumbers.html" target="_blank" rel="noopener"&gt;https://www.lee-mac.com/parsenumbers.html&lt;/A&gt; &amp;nbsp;. It also removes the "E &amp;amp; N" and any spaces, then a simple join back foreach into a real number.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(setq nums (LM:parsenumbers "E 1 234 956.789"))
(1 234 956.789)

(setq str "")
(foreach val nums
  (setq str (strcat str (rtos val 2 3)))
)
(setq num (atof str))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 00:37:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14264793#M172599</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2026-09-14T00:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14265301#M172603</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... For the task of getting number in a string ....&amp;nbsp;back ... into a real number.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[... and then back to a string with (strcat) &amp;amp; (rtos).]&amp;nbsp; But since they &lt;EM&gt;start out&lt;/EM&gt; as text strings and are ultimately &lt;EM&gt;used&lt;/EM&gt; as combined strings, to me it seems overkill to convert to numbers and then back to strings.&amp;nbsp; It's more direct to just keep the strings, and adjust those into viable coordinate input format [remove the E or N and the space(s)].&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 12:44:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14265301#M172603</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-14T12:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14265829#M172608</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3710982"&gt;@ash19854&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hey there,&lt;/P&gt;&lt;P&gt;check the following&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:draw_line_from_en (/ text en_selected ne_selected e_text n_text)
  (if (and
	(while (not en_selected)
	  (setq text (car (entsel "\nPick E/N text: ")))
	  (if (and text
		   (equal '(0 . "TEXT") (assoc 0 (entget text)))
		   (or
			(not (setq e_text text))
		        (vl-string-position (ascii "E") (cdr (assoc 1 (entget text))))
			(setq e_text nil)
			(not (setq n_text text))
			(vl-string-position (ascii "N") (cdr (assoc 1 (entget text))))
			(setq n_text nil)
		   )
	      )
	      (setq en_selected t)
	  )
	)
	(while (not ne_selected)
	  (setq text (car (entsel (if e_text "\nPick N text: " "\nPick E text: "))))
	  (if (and text
		   (equal '(0 . "TEXT") (assoc 0 (entget text)))
		   (vl-string-position (if e_text (ascii "N") (ascii "E")) (cdr (assoc 1 (entget text))))
	      )
	      (progn
		(if e_text (setq n_text text) (setq e_text text))  
	        (setq ne_selected t)
	      )
	  )
	)
       )
       (command "_line" "_non"
			(strcat (vl-list-&amp;gt;string (vl-remove-if '(lambda (el) (member el (list 32 69 78))) (vl-string-&amp;gt;list (cdr (assoc 1 (entget e_text))))))
				","
				(vl-list-&amp;gt;string (vl-remove-if '(lambda (el) (member el (list 32 69 78))) (vl-string-&amp;gt;list (cdr (assoc 1 (entget n_text))))))
			)
       )
   )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 06:18:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14265829#M172608</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2026-09-15T06:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14266035#M172613</link>
      <description>&lt;P&gt;Yes&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;you are right, woke up in middle of night and thought about it more, so a simpler method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun str2num ( txt / len pos ascchar str)
(setq len (strlen txt))
(setq pos 1 str "")
(repeat len
  (setq char (substr txt pos 1))
  (setq ascchar (ascii char))
  (if (or (= ascchar 46)(and (&amp;gt; ascchar 47)(&amp;lt; ascchar 58)))
    (setq str (strcat str char))
  )
  (setq pos (1+ pos))
)
(setq num (atof str))
(princ)
)

(setq txt "E 123 456.789")
(str2num txt)
123456.789&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 00:39:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14266035#M172613</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2026-09-15T00:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14266127#M172614</link>
      <description>&lt;P&gt;How about this?&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;....
(repeat len
  (setq char (substr txt pos 1))
  (if (wcmatch char "#,`.") (setq str (strcat str char)))
  (setq pos (1+ pos))
)
....&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Sep 2026 02:50:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14266127#M172614</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2026-09-15T02:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: text to line lisp required</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14266322#M172616</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;even better as it uses the wcmatch to identify a number, a comma or a period etc.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 06:55:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-to-line-lisp-required/m-p/14266322#M172616</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2026-09-15T06:55:37Z</dc:date>
    </item>
  </channel>
</rss>

