<?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: Search and Replace on &amp;quot; &amp;quot; (Space) does not work in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476786#M72132</link>
    <description>&lt;P&gt;I think I figured out what was going on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previously I must have done a search with multiple spaces and when I entered a single space it pulled that previous search term. Notice the extra highlight on those spaces. &amp;nbsp;When I deleted them out it worked as expected.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hegedus1_0-1649273199874.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41575iDA4354EE256CFBFE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hegedus1_0-1649273199874.png" alt="Hegedus1_0-1649273199874.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Apr 2022 19:27:31 GMT</pubDate>
    <dc:creator>Hegedus1</dc:creator>
    <dc:date>2022-04-06T19:27:31Z</dc:date>
    <item>
      <title>Search and Replace on " " (Space) does not work</title>
      <link>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476713#M72126</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Objective: I would like to cleanup Column names before export into graph database. &amp;nbsp;The import prices into the graph database would be much easier if I remove the spaces in the column names. &amp;nbsp;If I go to edit&amp;gt;Search&amp;gt;Find. &amp;nbsp;In the dialog box I enter a single space character into "Find What:" and clear the text in the "Replace With:" restrict to column names. &amp;nbsp;It finds nothing and replaces nothing. &amp;nbsp;Shouldn't this work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:46:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476713#M72126</guid>
      <dc:creator>Hegedus1</dc:creator>
      <dc:date>2023-06-10T23:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Search and Replace on " " (Space) does not work</title>
      <link>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476778#M72129</link>
      <description>&lt;P&gt;For me it seems to be working fine, using JMP16.2.0 Pro on Windows 10.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1649270355168.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41571i95E19355E6DF00E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1649270355168.png" alt="jthi_0-1649270355168.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After pressing Replace, the space will be removed&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;If you are willing to use scripting, you could use something like this (requires JMP16 due to For Each), but of course it would be good to figure out why Find and replace isn't working.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Iris.jmp");
//dt = Current Data Table();

For Each({col_name}, dt &amp;lt;&amp;lt; Get Column Names("String"),
	Column(dt, col_name) &amp;lt;&amp;lt; Set Name(Substitute(col_name, " ", ""));
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Apr 2022 19:10:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476778#M72129</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-04-06T19:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Search and Replace on " " (Space) does not work</title>
      <link>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476786#M72132</link>
      <description>&lt;P&gt;I think I figured out what was going on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previously I must have done a search with multiple spaces and when I entered a single space it pulled that previous search term. Notice the extra highlight on those spaces. &amp;nbsp;When I deleted them out it worked as expected.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hegedus1_0-1649273199874.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41575iDA4354EE256CFBFE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hegedus1_0-1649273199874.png" alt="Hegedus1_0-1649273199874.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 19:27:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Search-and-Replace-on-quot-quot-Space-does-not-work/m-p/476786#M72132</guid>
      <dc:creator>Hegedus1</dc:creator>
      <dc:date>2022-04-06T19:27:31Z</dc:date>
    </item>
  </channel>
</rss>

