<?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: Length in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29023#M6793</link>
    <description>Thank you all for your suggestions.</description>
    <pubDate>Mon, 14 Mar 2011 23:58:47 GMT</pubDate>
    <dc:creator>ren2010</dc:creator>
    <dc:date>2011-03-14T23:58:47Z</dc:date>
    <item>
      <title>Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29017#M6787</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I have a dataset with more than 100 variables and I want to change the length of two character vars .I thought of using SQL(by listing all the 100 vars,so that i can maintain the order of the vars in original dataset),but just want to know any other method I can use to change length and also maintain the order of  variables in the dataset.&lt;BR /&gt;
&lt;BR /&gt;
Please advice&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Mon, 14 Mar 2011 17:38:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29017#M6787</guid>
      <dc:creator>ren2010</dc:creator>
      <dc:date>2011-03-14T17:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29018#M6788</link>
      <description>Hello Ren2010,&lt;BR /&gt;
&lt;BR /&gt;
You can use variable lists. Let we have variables i, z, g, p and would like to change length of g then &lt;BR /&gt;
[pre]&lt;BR /&gt;
data i;&lt;BR /&gt;
  i=1;  z=15.;  g="3."; p="14"; &lt;BR /&gt;
run;&lt;BR /&gt;
proc SQL;&lt;BR /&gt;
  select name as lst into :lst separated " " from SASHELP.VCOLUMN &lt;BR /&gt;
  where LIBNAME="WORK" and MEMNAME="I"&lt;BR /&gt;
;quit; &lt;BR /&gt;
%put lst=&amp;amp;lst;&lt;BR /&gt;
data r;&lt;BR /&gt;
  length g $5;&lt;BR /&gt;
  set i;&lt;BR /&gt;
run;&lt;BR /&gt;
data rr;&lt;BR /&gt;
  retain &amp;amp;lst;&lt;BR /&gt;
  set r;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
Sincerely,&lt;BR /&gt;
SPR</description>
      <pubDate>Mon, 14 Mar 2011 18:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29018#M6788</guid>
      <dc:creator>SPR</dc:creator>
      <dc:date>2011-03-14T18:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29019#M6789</link>
      <description>Hello ren2010,&lt;BR /&gt;
You can also use proc datasets to modify the length of the variables. It will still maintain the order of the variables.&lt;BR /&gt;
Example:&lt;BR /&gt;
data a;&lt;BR /&gt;
input name $ class $ dept $ designation $;&lt;BR /&gt;
cards;&lt;BR /&gt;
George IV computers Comp_dev&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
proc contents data =a;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data b;&lt;BR /&gt;
retain class dept designation name;&lt;BR /&gt;
set a;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc datasets lib=work nolist;&lt;BR /&gt;
modify b;&lt;BR /&gt;
format name $20.;&lt;BR /&gt;
quit;&lt;BR /&gt;
run;&lt;BR /&gt;
proc contents data =b;&lt;BR /&gt;
run;</description>
      <pubDate>Mon, 14 Mar 2011 18:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29019#M6789</guid>
      <dc:creator>GG44</dc:creator>
      <dc:date>2011-03-14T18:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29020#M6790</link>
      <description>Use "SAS Variable Lists" and a few well chosen unexecuted statements.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data have;&lt;BR /&gt;
   length a b c 8 chr1 $10 x1-x5 chr2 $5 d e f 8;&lt;BR /&gt;
   retain _numeric_ 10;&lt;BR /&gt;
   retain _char_ 'abc';&lt;BR /&gt;
   do _n_ = 1 to 10;&lt;BR /&gt;
      output;&lt;BR /&gt;
      end;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc contents data=need varnum;&lt;BR /&gt;
   run;&lt;BR /&gt;
&lt;BR /&gt;
data need;&lt;BR /&gt;
   if 0 then set have(keep=a--c);&lt;BR /&gt;
   length chr1 $20;&lt;BR /&gt;
   if 0 then set have(keep=x:);&lt;BR /&gt;
   length chr2 $40;&lt;BR /&gt;
   if 0 then set have;&lt;BR /&gt;
   stop;&lt;BR /&gt;
   run;&lt;BR /&gt;
&lt;BR /&gt;
data need;&lt;BR /&gt;
   if 0 then modify need;&lt;BR /&gt;
   set have;&lt;BR /&gt;
   output;&lt;BR /&gt;
   run;&lt;BR /&gt;
&lt;BR /&gt;
proc contents data=need varnum;&lt;BR /&gt;
   run;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 14 Mar 2011 18:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29020#M6790</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2011-03-14T18:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29021#M6791</link>
      <description>Here is another method that utilizes call vnext to generate a length statement.  This example changes the length of the variable Sex from 1 to 2 in sashelp.class.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data _null_;&lt;BR /&gt;
	if 0 then set sashelp.class;&lt;BR /&gt;
	length length_statement $ 32767 vname $32 vtype $1;&lt;BR /&gt;
	retain length_statement;&lt;BR /&gt;
	length_statement = 'length';&lt;BR /&gt;
	do while (vname ne 'length_statement');&lt;BR /&gt;
		call vnext(vname, vtype, vlength);&lt;BR /&gt;
		if vname = 'Sex' then vlength = 2;&lt;BR /&gt;
		if vname ne 'length_statement' then do;&lt;BR /&gt;
			var_length = catx(' ', vname, ifc(vtype='C', '$', ''), vlength);&lt;BR /&gt;
			length_statement = catx(' ', length_statement, var_length);&lt;BR /&gt;
		end;&lt;BR /&gt;
	end;&lt;BR /&gt;
	length_statement = cats(length_statement, ';');&lt;BR /&gt;
	call symputx("length_statement", length_statement);&lt;BR /&gt;
run;&lt;BR /&gt;
	&lt;BR /&gt;
data class;&lt;BR /&gt;
	&amp;amp;length_statement&lt;BR /&gt;
	set sashelp.class;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 14 Mar 2011 19:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29021#M6791</guid>
      <dc:creator>polingjw</dc:creator>
      <dc:date>2011-03-14T19:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29022#M6792</link>
      <description>@ren2010: here is an (sql) way:&lt;BR /&gt;&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;/*&amp;nbsp;test&amp;nbsp;data&amp;nbsp;*/&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;data&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;have;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;a&amp;nbsp;b&amp;nbsp;c&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;8&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;chr1&amp;nbsp;$&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;10&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;x1-x5&amp;nbsp;chr2&amp;nbsp;$&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;5&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;d&amp;nbsp;e&amp;nbsp;f&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;8&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;retain&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;_numeric_&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;10&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;retain&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;_char_&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#800080;font-family:Courier New;font-size:10pt;"&gt;'abc'&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;_n_&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;1&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;to&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;1e6&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;run&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;/*&amp;nbsp;change&amp;nbsp;the&amp;nbsp;length&amp;nbsp;of&amp;nbsp;a&amp;nbsp;couple&amp;nbsp;of&amp;nbsp;variables&amp;nbsp;*/&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;proc&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;sql&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;alter&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;have&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;modify&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;chr1&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;char&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;(&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;20&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;),&amp;nbsp;chr2&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;char&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;(&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#008080;font-family:Courier New;font-size:10pt;"&gt;4&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;quit&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;/*&amp;nbsp;check&amp;nbsp;*/&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;proc&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;contents&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#0000FF;font-family:Courier New;font-size:10pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;=have;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="color:#000080;font-family:Courier New;font-size:10pt;"&gt;run&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;/*&amp;nbsp;on&amp;nbsp;log&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Type&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Len&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;chr1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Char&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;20&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;chr2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Char&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;SPAN style="color:#008000;font-family:Courier New;font-size:10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;*/&lt;/SPAN&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Mar 2011 20:12:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29022#M6792</guid>
      <dc:creator>chang_y_chung_hotmail_com</dc:creator>
      <dc:date>2011-03-14T20:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29023#M6793</link>
      <description>Thank you all for your suggestions.</description>
      <pubDate>Mon, 14 Mar 2011 23:58:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length/m-p/29023#M6793</guid>
      <dc:creator>ren2010</dc:creator>
      <dc:date>2011-03-14T23:58:47Z</dc:date>
    </item>
  </channel>
</rss>

