<?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 to assign hotkey to move to the end of next word in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721095#M223424</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your dedicated guidance.&lt;/P&gt;
&lt;P&gt;I did not catch your point here, is there any guidance to create this macro&amp;nbsp;&lt;SPAN&gt;converting such a comma separated list into a quoted comma separated list&lt;/SPAN&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;You could for example create a simple macro that will convert such a comma separated list into a quoted comma separated list&lt;/SPAN&gt;&lt;SPAN&gt;.&amp;nbsp; Let's say you made such a macro and named it QLIST&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding your code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile cards dsd flowover ;
  input word :$200. @@; 
  file log dsd ;
  put word ~ @;
cards4;
AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS
;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My log shows some quotation of blank as being highlighted as below:&lt;/P&gt;
&lt;P&gt;For example, the one here&amp;nbsp;&lt;CODE class=" language-sas"&gt;"DENMARK",&lt;FONT color="#000000"&gt;&lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/FONT&gt;,"ESTONIA"&lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;28         data _null_;
29           infile cards dsd flowover ;
30           input word :$200. @@;
31           file log dsd ;
32           put word ~ @;
33         cards4;

"AUSTRALIA","AUSTRIA","BELGIUM","CANADA","SWITZERLAND","CHILE","CYPRUS","CZECH","GERMANY","DENMARK",&lt;FONT color="#000000"&gt;&lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/FONT&gt;,"ESTONIA","FINLAND","FRANCE"
"UNITEDK","GREECE","CROATIA","HUNGARY","IRELAND","ICELAND","JAPAN","LITHUANIA",&lt;STRONG&gt;" "&lt;/STRONG&gt;,"LUXEMBOURG","LATVIA","NETHERLANDS","NORWAY"
"NEWZEALAND","PORTUGAL","SINGAPORE","SLOVAKIA","SLOVENIA","SWEDEN","UNITEDS"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Could you please lemme know how to sort it ?&lt;/P&gt;
&lt;P&gt;And I am not familiar with this sentence, could you please tell me what do you mean here&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;You might need to double check that there are enough commas when the log wraps to a new line.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And can I ask why do you have four commas at the end of your code like that?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Sorry, I know these are quite a novice questions but I am still learning and not familiar with them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Feb 2021 21:53:44 GMT</pubDate>
    <dc:creator>Phil_NZ</dc:creator>
    <dc:date>2021-02-22T21:53:44Z</dc:date>
    <item>
      <title>How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721062#M223411</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In SAS EG, I can use Ctr+Left to move to the beginning of the next word after delimiter ",". For example, I have a series of the word as below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if GEOGN in(AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS)
then pol_sta=1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So, assume the cursor is right after the last word"A" in AUSTRALIA, I need to press the combination Ctr+Left &lt;STRONG&gt;TWICE&lt;/STRONG&gt; to reach the end of "AUSTRIA". Because I need to deal with this thing hundreds of times so my question is: How to assign a keyboard macro to just use only one time hit to move directly from &lt;STRONG&gt;after the last character&lt;/STRONG&gt; of &lt;STRONG&gt;AUSTRALIA&lt;/STRONG&gt;&amp;nbsp; to &lt;STRONG&gt;after the last&lt;/STRONG&gt; &lt;STRONG&gt;character&lt;/STRONG&gt; of &lt;STRONG&gt;AUSTRIA&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To be more specific:&lt;/P&gt;
&lt;P&gt;From&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="My97_1-1614029446476.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/55060iA1E92A5BDFDB6F91/image-size/medium?v=v2&amp;amp;px=400" role="button" title="My97_1-1614029446476.png" alt="My97_1-1614029446476.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="My97_0-1614029417120.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/55059i0D2B06845E1BB628/image-size/medium?v=v2&amp;amp;px=400" role="button" title="My97_0-1614029417120.png" alt="My97_0-1614029417120.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="My97_0-1614027318375.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/55054i7F530C4ACDD15F4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="My97_0-1614027318375.png" alt="My97_0-1614027318375.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 21:44:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721062#M223411</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-02-22T21:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721071#M223413</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;Please reconsider this phrasing:&lt;BR /&gt;How to assign a keyboard macro to just use only one time hit to move directly from the last word of AUSTRALIA to the end of AUSTRIA.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since both of those are single word I am very confused about "last word of Australia".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 21:18:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721071#M223413</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-02-22T21:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721075#M223416</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for pointing it out.&lt;/P&gt;
&lt;P&gt;I am sorry for confusing you and others. Yes, it should be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;How to assign a keyboard macro to just use only one time hit to move directly from the after the last &lt;STRONG&gt;character&lt;/STRONG&gt; of AUSTRALIA to after the last &lt;STRONG&gt;character&lt;/STRONG&gt; of AUSTRIA.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Warm regards.&lt;/P&gt;
&lt;P&gt;P/S: I also updated this on my original post.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 21:29:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721075#M223416</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-02-22T21:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721081#M223418</link>
      <description>&lt;P&gt;You might get farther learning how to program in SAS instead of trying to learn how to program whatever editor you are using.&lt;/P&gt;
&lt;P&gt;You could for example create a simple macro that will convert such a comma separated list into a quoted comma separated list.&amp;nbsp; Let's say you made such a macro and named it QLIST then instead of working so hard to add quotes into your program text just add the macro call.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if GEOGN in %qlist(AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS)
then pol_sta=1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you had such a macro you could just execute this statement in SAS&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %qlist(AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS) ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And copy and paste the resulting string from the SAS log back into your program editor.&lt;/P&gt;
&lt;P&gt;Or without the macro just run a simple datastep instead and copy and paste the results from the SAS log. You might need to double check that there are enough commas when the log wraps to a new line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile cards dsd flowover ;
  input word :$200. @@; 
  file log dsd ;
  put word ~ @;
cards4;
AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS
;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 21:35:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721081#M223418</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-02-22T21:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721095#M223424</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your dedicated guidance.&lt;/P&gt;
&lt;P&gt;I did not catch your point here, is there any guidance to create this macro&amp;nbsp;&lt;SPAN&gt;converting such a comma separated list into a quoted comma separated list&lt;/SPAN&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;You could for example create a simple macro that will convert such a comma separated list into a quoted comma separated list&lt;/SPAN&gt;&lt;SPAN&gt;.&amp;nbsp; Let's say you made such a macro and named it QLIST&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding your code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile cards dsd flowover ;
  input word :$200. @@; 
  file log dsd ;
  put word ~ @;
cards4;
AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS
;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My log shows some quotation of blank as being highlighted as below:&lt;/P&gt;
&lt;P&gt;For example, the one here&amp;nbsp;&lt;CODE class=" language-sas"&gt;"DENMARK",&lt;FONT color="#000000"&gt;&lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/FONT&gt;,"ESTONIA"&lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;28         data _null_;
29           infile cards dsd flowover ;
30           input word :$200. @@;
31           file log dsd ;
32           put word ~ @;
33         cards4;

"AUSTRALIA","AUSTRIA","BELGIUM","CANADA","SWITZERLAND","CHILE","CYPRUS","CZECH","GERMANY","DENMARK",&lt;FONT color="#000000"&gt;&lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/FONT&gt;,"ESTONIA","FINLAND","FRANCE"
"UNITEDK","GREECE","CROATIA","HUNGARY","IRELAND","ICELAND","JAPAN","LITHUANIA",&lt;STRONG&gt;" "&lt;/STRONG&gt;,"LUXEMBOURG","LATVIA","NETHERLANDS","NORWAY"
"NEWZEALAND","PORTUGAL","SINGAPORE","SLOVAKIA","SLOVENIA","SWEDEN","UNITEDS"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Could you please lemme know how to sort it ?&lt;/P&gt;
&lt;P&gt;And I am not familiar with this sentence, could you please tell me what do you mean here&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;You might need to double check that there are enough commas when the log wraps to a new line.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And can I ask why do you have four commas at the end of your code like that?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Sorry, I know these are quite a novice questions but I am still learning and not familiar with them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 21:53:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721095#M223424</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-02-22T21:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721117#M223439</link>
      <description>&lt;P&gt;You need four semi-colons to mark the end of the in-line data when you use the CARDS4 statement (what the new documentation calls a DATALINES4 statement, but that is loo long to type and not as descriptive to me as CARDS).&amp;nbsp; This to allow lines of data that include an actual semi-colon character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The extra missing values of WORD are caused by the trailing commas at the ends of the input lines.&amp;nbsp; So both the comma and the end of line are treated as delimiting the words so with the DSD option the result is a blank word.&amp;nbsp; You could easily suppress those by adding by only running the PUT statement when WORD is not empty.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the third point you will see that a comma is missing between "FRANCE" and "UNITEDK" since the PUT statement did not add one when it inserted a new line. You could fix that by writing your own comma.&amp;nbsp; If you switch the output delimiter to a space then the result is more like what you want.&lt;/P&gt;
&lt;P&gt;So this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile cards dsd flowover ;
  input word :$200. @@; 
  file log dsd dlm=' ';
  if not missing(word) then put word ~ ',' @;
cards4;
AUSTRALIA,AUSTRIA,BELGIUM,CANADA,SWITZERLAND,CHILE,CYPRUS,CZECH,GERMANY,DENMARK,
ESTONIA,FINLAND,FRANCE,UNITEDK,GREECE,CROATIA,HUNGARY,IRELAND,ICELAND,JAPAN,LITHUANIA,
LUXEMBOURG,LATVIA,NETHERLANDS,NORWAY,NEWZEALAND,PORTUGAL,SINGAPORE,SLOVAKIA,SLOVENIA,SWEDEN,UNITEDS
;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Generates:&lt;/P&gt;
&lt;PRE&gt;
"AUSTRALIA" ,"AUSTRIA" ,"BELGIUM" ,"CANADA" ,"SWITZERLAND" ,"CHILE" ,"CYPRUS" ,"CZECH" ,"GERMANY" ,"DENMARK" ,"ESTONIA" ,"FINLAND" ,
"FRANCE" ,"UNITEDK" ,"GREECE" ,"CROATIA" ,"HUNGARY" ,"IRELAND" ,"ICELAND" ,"JAPAN" ,"LITHUANIA" ,"LUXEMBOURG" ,"LATVIA" ,
"NETHERLANDS" ,"NORWAY" ,"NEWZEALAND" ,"PORTUGAL" ,"SINGAPORE" ,"SLOVAKIA" ,"SLOVENIA" ,"SWEDEN" ,"UNITEDS" ,
&lt;/PRE&gt;
&lt;P&gt;Now you just have one extra comma after the last word.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 22:52:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721117#M223439</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-02-22T22:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721132#M223445</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/212695"&gt;@Phil_NZ&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another simple way to put quotes around comma-separated words in the editor is to mark the list and then use "Replace in Selection" to replace the commas by quoted commas:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="quotecommas.png" style="width: 591px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/55068i559821E0EF7095EA/image-size/large?v=v2&amp;amp;px=999" role="button" title="quotecommas.png" alt="quotecommas.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This gives you all the quotes you need except the first and the last, but you can add these two manually or via keyboard shortcut, as discussed yesterday. Moreover, you may need to fix quotes before line breaks, but this, again, can be done with the Replace dialog:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fix_linebreaks.png" style="width: 685px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/55069iB0600F84518BBC24/image-size/large?v=v2&amp;amp;px=999" role="button" title="fix_linebreaks.png" alt="fix_linebreaks.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;\n&lt;/FONT&gt; is the regular expression for the "carriage return" character, so you just change the order of the quote and that character. (I hope this works with your SAS EG interface as well.)&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 23:39:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721132#M223445</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-02-22T23:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to assign hotkey to move to the end of next word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721137#M223447</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your bits of help and dedicated explanation. I tried and learned and can say that these two methods both work so far.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 23:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-assign-hotkey-to-move-to-the-end-of-next-word/m-p/721137#M223447</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-02-22T23:57:28Z</dc:date>
    </item>
  </channel>
</rss>

