<?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: How will the row characters be matched from left to right to the last decimal point using the re? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487345#M73112</link>
    <description>&lt;P&gt;regex is not the best way to attack this problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;word(-1,"aaa.bbb.ccc.this is it",".") // "this is it"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will get the last segment efficiently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;word([1 -2],"aaa.bbb.ccc.this is it",".") // "aaa.bbb.ccc"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will get the left part efficiently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 May 2022 00:21:35 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2022-05-17T00:21:35Z</dc:date>
    <item>
      <title>How will the row characters be matched from left to right to the last decimal point using the re?</title>
      <link>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487109#M73094</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So what's left over on the right-hand side is the non-green part of each row.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20220516212519.png" style="width: 181px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42443iD88ACC971CC188A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="20220516212519.png" alt="20220516212519.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:59:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487109#M73094</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-06-09T16:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: How will the row characters be matched from left to right to the last decimal point using the re?</title>
      <link>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487150#M73097</link>
      <description>&lt;P&gt;I think you are asking for a regex to match all but the last segment.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;regex("aaa.bbb.ccc.ddd","([^\.]+\.)+")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;aaa.bbb.ccc.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-jsl"&gt;[^\.]&lt;/CODE&gt; means a single character that is not a period &lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-jsl"&gt;[^\.]+&lt;/CODE&gt; means one or more of those characters&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-jsl"&gt;[^\.]+\.&lt;/CODE&gt; means match the period&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-jsl"&gt;([^\.]+\.)+&lt;/CODE&gt; means do all that one or more times&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 14:05:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487150#M73097</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-05-16T14:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How will the row characters be matched from left to right to the last decimal point using the re?</title>
      <link>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487344#M73111</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;na1=Regex("aaa.bbb.ccc.ddd","[^\..]+$");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 May 2022 23:37:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487344#M73111</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2022-05-16T23:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: How will the row characters be matched from left to right to the last decimal point using the re?</title>
      <link>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487345#M73112</link>
      <description>&lt;P&gt;regex is not the best way to attack this problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;word(-1,"aaa.bbb.ccc.this is it",".") // "this is it"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will get the last segment efficiently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;word([1 -2],"aaa.bbb.ccc.this is it",".") // "aaa.bbb.ccc"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will get the left part efficiently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 00:21:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-will-the-row-characters-be-matched-from-left-to-right-to-the/m-p/487345#M73112</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-05-17T00:21:35Z</dc:date>
    </item>
  </channel>
</rss>

