<?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: REPLACE in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194371#M20812</link>
    <description>The problem is you have already replaced one string with another and then change it back.&lt;BR /&gt;
&lt;BR /&gt;
Look in the help files for info on sting handling functions such as Mid &amp;amp; Len.</description>
    <pubDate>Mon, 03 Mar 2008 22:22:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-03-03T22:22:02Z</dc:date>
    <item>
      <title>REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194361#M20802</link>
      <description>I am trying to make an autocad routine that allows the user to select a text or mtext object one at a time using the mouse and look for "S" within that text and replace it with "N"  Note: The "S" will only appear once within the object.  Any ideas?</description>
      <pubDate>Mon, 03 Mar 2008 05:45:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194361#M20802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T05:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194362#M20803</link>
      <description>VBA has a Replace function for strings.</description>
      <pubDate>Mon, 03 Mar 2008 06:23:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194362#M20803</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T06:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194363#M20804</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Try the following&lt;BR /&gt;
&lt;BR /&gt;
Sub ReplaceSwithN()&lt;BR /&gt;
On Error Resume Next&lt;BR /&gt;
Dim oEnt As AcadEntity&lt;BR /&gt;
Dim Pt&lt;BR /&gt;
Dim sTmp As String&lt;BR /&gt;
  ThisDrawing.Utility.GetEntity oEnt, Pt&lt;BR /&gt;
  Do While Err = 0&lt;BR /&gt;
    ReplaceString oEnt, "S", "N"&lt;BR /&gt;
    ThisDrawing.Utility.GetEntity oEnt, Pt&lt;BR /&gt;
  Loop&lt;BR /&gt;
  Err.Clear&lt;BR /&gt;
End Sub  ' ReplaceSwithN&lt;BR /&gt;
&lt;BR /&gt;
Function ReplaceString(oEnt As AcadEntity, sCurrent As String, sNew As &lt;BR /&gt;
String) As Boolean&lt;BR /&gt;
Dim oText As AcadText&lt;BR /&gt;
Dim oMText As AcadMText&lt;BR /&gt;
  ReplaceString = True&lt;BR /&gt;
    If TypeOf oEnt Is AcadText Then&lt;BR /&gt;
      Set oText = oEnt&lt;BR /&gt;
      sTmp = oText.TextString&lt;BR /&gt;
      sTmp = Replace(sTmp, sCurrent, sNew)&lt;BR /&gt;
      oText.TextString = sTmp&lt;BR /&gt;
      oText.Update&lt;BR /&gt;
    ElseIf TypeOf oEnt Is AcadMText Then&lt;BR /&gt;
      Set oMText = oEnt&lt;BR /&gt;
      sTmp = oMText.TextString&lt;BR /&gt;
      sTmp = Replace(sTmp, sCurrent, sNew)&lt;BR /&gt;
      oMText.TextString = sTmp&lt;BR /&gt;
      oMText.Update&lt;BR /&gt;
    Else&lt;BR /&gt;
      MsgBox "The selected object was neither Text or MText", vbInformation&lt;BR /&gt;
      ReplaceString = False&lt;BR /&gt;
  End If&lt;BR /&gt;
&lt;BR /&gt;
End Function  ' ReplaceString&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;DRKELLOG&gt; wrote in message &lt;BR /&gt;
news:5864036@discussion.autodesk.com...&lt;BR /&gt;
I am trying to make an autocad routine that allows the user to select a text &lt;BR /&gt;
or mtext object one at a time using the mouse and look for "S" within that &lt;BR /&gt;
text and replace it with "N"  Note: The "S" will only appear once within the &lt;BR /&gt;
object.  Any ideas?&lt;/DRKELLOG&gt;</description>
      <pubDate>Mon, 03 Mar 2008 10:54:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194363#M20804</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T10:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194364#M20805</link>
      <description>As was mentioned in other posts, you can use the VBA Replace() function to replace parts of a string.&lt;BR /&gt;
&lt;BR /&gt;
But, you should not consider the code Laurie posted a good example of how to do that, because it calls Replace() on every selected text/mtext object and reassigns the result, even when it's unnecessary (e.g., when the string to replace does not even exist in the text).&lt;BR /&gt;
&lt;BR /&gt;
Instead, use the InStr() function to see if the string you want to replace exists in the text string first, and only proceed to use Replace() if it does.&lt;BR /&gt;
That also allows you to report back to the user, how many text objects were actually modified.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;DRKELLOG&gt; wrote in message news:5864036@discussion.autodesk.com...&lt;BR /&gt;
I am trying to make an autocad routine that allows the user to select a text or mtext object one at a time using the mouse and look for "S" within that text and replace it with "N"  Note: The "S" will only appear once within the object.  Any ideas?&lt;/DRKELLOG&gt;</description>
      <pubDate>Mon, 03 Mar 2008 15:00:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194364#M20805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T15:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194365#M20806</link>
      <description>Laurie,&lt;BR /&gt;
&lt;BR /&gt;
    Thanks for the quick reply.  I inserted the code as shown but it doesn't seem to replace anything?</description>
      <pubDate>Mon, 03 Mar 2008 15:53:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194365#M20806</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T15:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194366#M20807</link>
      <description>Hi Tony,&lt;BR /&gt;
&lt;BR /&gt;
Did you notice that the request from the user was for code when the text is &lt;BR /&gt;
hand selected?&lt;BR /&gt;
&lt;BR /&gt;
Did you see any requirement to count the results?&lt;BR /&gt;
&lt;BR /&gt;
Obviously, if the whole process was to be fully automated, you would not use &lt;BR /&gt;
the "replace" command.  As as you pointed out a few months ago, it is &lt;BR /&gt;
quicker to use a combination of instr and re-assembly of the string.  But &lt;BR /&gt;
the speed issue harfly arises in this case and I opted for simplicity of the &lt;BR /&gt;
code..&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5864284@discussion.autodesk.com...&lt;BR /&gt;
As was mentioned in other posts, you can use the VBA Replace() function to &lt;BR /&gt;
replace parts of a string.&lt;BR /&gt;
&lt;BR /&gt;
But, you should not consider the code Laurie posted a good example of how to &lt;BR /&gt;
do that, because it calls Replace() on every selected text/mtext object and &lt;BR /&gt;
reassigns the result, even when it's unnecessary (e.g., when the string to &lt;BR /&gt;
replace does not even exist in the text).&lt;BR /&gt;
&lt;BR /&gt;
Instead, use the InStr() function to see if the string you want to replace &lt;BR /&gt;
exists in the text string first, and only proceed to use Replace() if it &lt;BR /&gt;
does.&lt;BR /&gt;
That also allows you to report back to the user, how many text objects were &lt;BR /&gt;
actually modified.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;DRKELLOG&gt; wrote in message &lt;BR /&gt;
news:5864036@discussion.autodesk.com...&lt;BR /&gt;
I am trying to make an autocad routine that allows the user to select a text &lt;BR /&gt;
or mtext object one at a time using the mouse and look for "S" within that &lt;BR /&gt;
text and replace it with "N"  Note: The "S" will only appear once within the &lt;BR /&gt;
object.  Any ideas?&lt;/DRKELLOG&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Mon, 03 Mar 2008 19:46:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194366#M20807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T19:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194367#M20808</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Why not step through the code and see where it it not doing as you expect?&lt;BR /&gt;
&lt;BR /&gt;
It certainly worked for me before I posted it.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;DRKELLOG&gt; wrote in message &lt;BR /&gt;
news:5864355@discussion.autodesk.com...&lt;BR /&gt;
Laurie,&lt;BR /&gt;
&lt;BR /&gt;
    Thanks for the quick reply.  I inserted the code as shown but it doesn't &lt;BR /&gt;
seem to replace anything?&lt;/DRKELLOG&gt;</description>
      <pubDate>Mon, 03 Mar 2008 19:46:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194367#M20808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T19:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194368#M20809</link>
      <description>Thanks Laurie.  Can you do the same thing but like this?&lt;BR /&gt;
&lt;BR /&gt;
Change all "N" to "S"&lt;BR /&gt;
all "S" to "N"&lt;BR /&gt;
all "E" to "W"&lt;BR /&gt;
and all "W" to "E"&lt;BR /&gt;
?&lt;BR /&gt;
I thought I could figure it out with a little help of example usage but it is harder than I thought.</description>
      <pubDate>Mon, 03 Mar 2008 21:31:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194368#M20809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T21:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194369#M20810</link>
      <description>Cycle through each character using the Mid function rebuilding the string with the changes as necessary.</description>
      <pubDate>Mon, 03 Mar 2008 22:13:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194369#M20810</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T22:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194370#M20811</link>
      <description>I AM NEW TO VB.  CAN YOU PROVIDE EXAMPLE.  LAURIES CODE WITH MY MESSED UP ATTEMPT IS AS FOLLOWS...&lt;BR /&gt;
&lt;BR /&gt;
Do While Err = 0&lt;BR /&gt;
&lt;BR /&gt;
On Error Resume Next&lt;BR /&gt;
Dim oEnt As Object 'AcadEntity&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Dim Pt&lt;BR /&gt;
&lt;BR /&gt;
Dim sTmp As String&lt;BR /&gt;
Thisdrawing.Utility.GetEntity oEnt, Pt&lt;BR /&gt;
'Do While Err = 0&lt;BR /&gt;
DoEvents&lt;BR /&gt;
ReplaceString oEnt, "E", "W"&lt;BR /&gt;
DoEvents&lt;BR /&gt;
ReplaceString oEnt, "S", "N"&lt;BR /&gt;
&lt;BR /&gt;
DoEvents&lt;BR /&gt;
ReplaceString oEnt, "W", "E"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ReplaceString oEnt, "N", "S"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
DoEvents&lt;BR /&gt;
&lt;BR /&gt;
Thisdrawing.Utility.GetEntity oEnt, Pt&lt;BR /&gt;
&lt;BR /&gt;
Loop&lt;BR /&gt;
Err.Clear</description>
      <pubDate>Mon, 03 Mar 2008 22:16:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194370#M20811</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T22:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194371#M20812</link>
      <description>The problem is you have already replaced one string with another and then change it back.&lt;BR /&gt;
&lt;BR /&gt;
Look in the help files for info on sting handling functions such as Mid &amp;amp; Len.</description>
      <pubDate>Mon, 03 Mar 2008 22:22:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194371#M20812</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T22:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194372#M20813</link>
      <description>Think about what you're asking it to do...&lt;BR /&gt;
&lt;BR /&gt;
&lt;DRKELLOG&gt; wrote in message &lt;BR /&gt;
news:5864868@discussion.autodesk.com...&lt;BR /&gt;
Thanks Laurie.  Can you do the same thing but like this?&lt;BR /&gt;
&lt;BR /&gt;
Change all "N" to "S"&lt;BR /&gt;
    ok so now all N are S&lt;BR /&gt;
&lt;BR /&gt;
all "S" to "N"&lt;BR /&gt;
    now you change all S back to N&lt;BR /&gt;
&lt;BR /&gt;
same with e and w&lt;BR /&gt;
&lt;BR /&gt;
all "E" to "W"&lt;BR /&gt;
&lt;BR /&gt;
and all "W" to "E"&lt;BR /&gt;
?&lt;BR /&gt;
I thought I could figure it out with a little help of example usage but it &lt;BR /&gt;
is harder than I thought.&lt;BR /&gt;
&lt;BR /&gt;
so if you want to do that kind of thing you'll need interim place holders&lt;BR /&gt;
&lt;BR /&gt;
Change all "N" to "wasN" 'or other temp placeholder certain to *not exist &lt;BR /&gt;
currently*&lt;BR /&gt;
Change all "S" to "N"&lt;BR /&gt;
Change all "wasN" to "S"&lt;BR /&gt;
or something like that...&lt;BR /&gt;
hth&lt;BR /&gt;
mark&lt;/DRKELLOG&gt;</description>
      <pubDate>Mon, 03 Mar 2008 22:28:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194372#M20813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T22:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194373#M20814</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
If you look at the line:&lt;BR /&gt;
&lt;BR /&gt;
    ReplaceString oEnt, "S", "N"&lt;BR /&gt;
&lt;BR /&gt;
You can change that line to be:&lt;BR /&gt;
&lt;BR /&gt;
    ReplaceString oEnt, "N", "S"&lt;BR /&gt;
&lt;BR /&gt;
or&lt;BR /&gt;
&lt;BR /&gt;
    ReplaceString oEnt, "E", "W"&lt;BR /&gt;
&lt;BR /&gt;
In each case the first string is replaced by the second one&lt;BR /&gt;
&lt;BR /&gt;
So now all you need is a means of distinguishing which repalcement you wish &lt;BR /&gt;
to make which can be done like this:&lt;BR /&gt;
&lt;BR /&gt;
    If TypeOf oEnt Is AcadText Then&lt;BR /&gt;
      Set oText = oEnt&lt;BR /&gt;
      sTmp = oText.TextString&lt;BR /&gt;
     WhichReplacement oEnt, sTmp&lt;BR /&gt;
    ElseIf TypeOf oEnt Is AcadMText Then&lt;BR /&gt;
      Set oMText = oEnt&lt;BR /&gt;
      sTmp = oMText.TextString&lt;BR /&gt;
      WhichReplacement oEnt, sTmp&lt;BR /&gt;
   Else&lt;BR /&gt;
      MsgBox "The selected object was neither Text or MText", vbInformation&lt;BR /&gt;
  End If&lt;BR /&gt;
&lt;BR /&gt;
Function WhichReplacement (oEnt as AcadEntity, sTmp as String)&lt;BR /&gt;
      If  Instr(sTmp, "N" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "N", "S"&lt;BR /&gt;
      ElseIf Instr(sTmp, "S" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "S", "N"&lt;BR /&gt;
     ElseIf Instr(sTmp, "W" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "W", "E"&lt;BR /&gt;
     ElseIf Instr(sTmp, "E" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "E", "W"&lt;BR /&gt;
    End If&lt;BR /&gt;
&lt;BR /&gt;
End Function&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I'm unsure if you expect combinations of N and W or N and E etc.  If you do &lt;BR /&gt;
then the code statements need to be changed to:&lt;BR /&gt;
&lt;BR /&gt;
 Function WhichReplacement (oEnt as AcadEntity, sTmp as String)&lt;BR /&gt;
     If  Instr(sTmp, "N" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "N", "S"&lt;BR /&gt;
      ElseIf Instr(sTmp, "S" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "S", "N"&lt;BR /&gt;
     End If&lt;BR /&gt;
     If Instr(sTmp, "W" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "W", "E"&lt;BR /&gt;
     ElseIf Instr(sTmp, "E" &amp;gt; 0 Then&lt;BR /&gt;
            ReplaceString oEnt, "E", "W"&lt;BR /&gt;
    End If&lt;BR /&gt;
End Function&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
Also, you may care to remove the messagebox from the ReplaceString Function, &lt;BR /&gt;
as with these changes, you don't need it there&lt;BR /&gt;
&lt;BR /&gt;
I haven't tested this, and may have missed a couple of Dim statements, but &lt;BR /&gt;
you can add those as needed&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;DRKELLOG&gt; wrote in message &lt;BR /&gt;
news:5864868@discussion.autodesk.com...&lt;BR /&gt;
Thanks Laurie.  Can you do the same thing but like this?&lt;BR /&gt;
&lt;BR /&gt;
Change all "N" to "S"&lt;BR /&gt;
all "S" to "N"&lt;BR /&gt;
all "E" to "W"&lt;BR /&gt;
and all "W" to "E"&lt;BR /&gt;
?&lt;BR /&gt;
I thought I could figure it out with a little help of example usage but it &lt;BR /&gt;
is harder than I thought.&lt;/DRKELLOG&gt;</description>
      <pubDate>Mon, 03 Mar 2008 22:37:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194373#M20814</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-03T22:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194374#M20815</link>
      <description>I love this discussion group.  It works great!  But,  It works great in AutoCad 2002 but it doesn't work at all in AutoCad 2007?????????????????????</description>
      <pubDate>Tue, 04 Mar 2008 00:23:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194374#M20815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-04T00:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194375#M20816</link>
      <description>The above listed code that is.</description>
      <pubDate>Tue, 04 Mar 2008 00:24:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194375#M20816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-04T00:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE</title>
      <link>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194376#M20817</link>
      <description>Why doesn't it work in Acad 2007?</description>
      <pubDate>Tue, 04 Mar 2008 01:40:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/replace/m-p/2194376#M20817</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-04T01:40:31Z</dc:date>
    </item>
  </channel>
</rss>

