<?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: Create new variable by considering semicolon or spcae and split the data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691119#M210310</link>
    <description>Thank you for the solution, But my requirement is 10 length with or without space and colon. e.g. at 8th and 9th position data is present after semicolon or space then it should go in next colon (in case length = 10)&lt;BR /&gt;&lt;BR /&gt;obs1 should be new1 = hema; and new2=ashu pallu&lt;BR /&gt;obs2 should be new1= usa;swati; and new2=sujju;&lt;BR /&gt;obs3 should be new1=hema;m?; and new2=ashu pallu</description>
    <pubDate>Tue, 13 Oct 2020 02:08:34 GMT</pubDate>
    <dc:creator>pdhokriya</dc:creator>
    <dc:date>2020-10-13T02:08:34Z</dc:date>
    <item>
      <title>Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691049#M210288</link>
      <description>&lt;P&gt;Dear Reader,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not getting a correct output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My requirement is&amp;nbsp;col1 = hema; and col2 =&amp;nbsp;ashu pallu and so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Space and &lt;STRONG&gt;latest&lt;/STRONG&gt; &lt;STRONG&gt;semicolon&lt;/STRONG&gt; should be consider while splitting the data.&lt;/P&gt;
&lt;P&gt;**********************************************************&lt;/P&gt;
&lt;P&gt;data abc;&lt;BR /&gt;old = "hema;ashu pallu;hema;ashu pallu;hema;&lt;BR /&gt;ashu pallu;hema;";output;&lt;BR /&gt;old = "usa;swati;sajju;priyanka;priyanka";output;&lt;BR /&gt;old = "hema;m?;ashu pallu;hema;ashu pallu;hema;&lt;BR /&gt;ashu palluhema;";output;&lt;BR /&gt;old = "My prog";output;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let w = 10 ;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;data want (drop = _:) ; &lt;BR /&gt;set abc ; &lt;BR /&gt;array c $ &amp;amp;w col col1-col9 ; &lt;BR /&gt;/*if old^="" and length(strip(old)) le 10 then col=old; */&lt;BR /&gt;_i_ = 1 ; &lt;BR /&gt;do _x = 1 to countw (old, "; ") ; &lt;BR /&gt;c = catx ("; ", c, scan (old, _x, "; ")) ; &lt;BR /&gt;if length (c) &amp;lt;= &amp;amp;w and length (c) + length (scan (old, _x + 1)) &amp;gt; &amp;amp;w or _x = countw (old, "; ") then _i_ + 1 ; &lt;BR /&gt;end ; &lt;BR /&gt;run ; &lt;BR /&gt;************************************************************&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance for your help. Take care.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Priyanka&lt;/P&gt;</description>
      <pubDate>Mon, 12 Oct 2020 18:50:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691049#M210288</guid>
      <dc:creator>pdhokriya</dc:creator>
      <dc:date>2020-10-12T18:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691082#M210295</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/55374"&gt;@pdhokriya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Priyanka, I think you may have better results with COUNTC just looking for the semi-colon than looking for the combination of a semi-colon and a blank.&amp;nbsp; I think the end of line will be a problem otherwise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's how I would code the solution.&amp;nbsp; I will place the results with the Old string broken into string tokens below the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data abc;
	DROP	_:;
	RETAIN	_Max_Tokens	0;

	old 			= "hema;ashu pallu;hema;ashu pallu;hema;ashu pallu;hema;";
	_Token_Cnt		=	COUNTC(Old, ';');
	IF	_Token_Cnt	&amp;gt;	_Max_Tokens	THEN
		_Max_Tokens	=	_Token_Cnt;
	output;

	old 			= "usa;swati;sajju;priyanka;priyanka";
	_Token_Cnt		=	COUNTC(Old, ';');
	IF	_Token_Cnt	&amp;gt;	_Max_Tokens	THEN
		_Max_Tokens	=	_Token_Cnt;
	output;

	old 			= "hema;m?;ashu pallu;hema;ashu pallu;hema;ashu palluhema;";
	_Token_Cnt		=	COUNTC(Old, ';');
	IF	_Token_Cnt	&amp;gt;	_Max_Tokens	THEN
		_Max_Tokens	=	_Token_Cnt;
	output;

	old 			= "My prog";
	_Token_Cnt		=	COUNTC(Old, ';');
	IF	_Token_Cnt	&amp;gt;	_Max_Tokens	THEN
		_Max_Tokens	=	_Token_Cnt;
	output;

	CALL	SYMPUTX('Max_Tokens', _Max_Tokens, 'G');
RUN;

%PUT	NOTE:  &amp;amp;=Max_Tokens;

DATA	Parsed_Data;
	DROP	_:;
	SET	abc;
	ARRAY	Tokens	[*]	$32	Token1	-	Token&amp;amp;Max_Tokens;

	_i				=	0;
	DO	_i			=	1	TO	&amp;amp;Max_Tokens;
		Tokens[_i]	=	SCAN(Old, _i, ';');
	END;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Results:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jimbarbour_0-1602535673621.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50579i853BF279B241AA75/image-size/large?v=v2&amp;amp;px=999" role="button" title="jimbarbour_0-1602535673621.png" alt="jimbarbour_0-1602535673621.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Oct 2020 20:48:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691082#M210295</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-12T20:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691092#M210299</link>
      <description>&lt;P&gt;Perhaps I am not understanding the issue but don't you just want to use SCAN()?&amp;nbsp; If you want to know how many items there are use COUNTW().&lt;/P&gt;
&lt;P&gt;First let's make some test data:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input old $80.;
cards4;
hema;ashu pallu;hema;ashu pallu;hema;ashu pallu;hema
usa;swati;sajju;priyanka;priyanka
hema;m?;ashu pallu;hema;ashu pallu;hema;ashu palluhema
My prog
;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now let's run a program to create a lot of new variables to hold the individual words (tokens). The data step needs to know how many we are going to create.&amp;nbsp; And how long to make each one. We can make it more flexible by setting those numbers in macro variables.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let max=9;
%let width=10;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now just read in the existing data and use an ARRAY and a DO loop.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want ;
  set have ;
  array new [&amp;amp;max] $&amp;amp;width;
  do i=1 to countw(old,';');
    new[i] = scan(old,i,';');
  end;
  drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs   new1      new2         new3         new4         new5         new6         new7         new8   new9

 1    hema      ashu pallu   hema         ashu pallu   hema         ashu pallu   hema
 2    usa       swati        sajju        priyanka     priyanka
 3    hema      m?           ashu pallu   hema         ashu pallu   hema         ashu pallu
 4    My prog&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;If you want to treat space as a delimiter also then include it in the list of delimiters.&amp;nbsp; You will need more than 9 variables.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let width=10;
%let max=12;

data want ;
  set have ;
  array new [&amp;amp;max] $&amp;amp;width;
  do i=1 to countw(old,'; ');
    new[i] = scan(old,i,'; ');
  end;
  drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs   new1   new2    new3    new4       new5       new6    new7    new8   new9    new10       new11   new12

 1    hema   ashu    pallu   hema       ashu       pallu   hema    ashu   pallu   hema
 2    usa    swati   sajju   priyanka   priyanka
 3    hema   m?      ashu    pallu      hema       ashu    pallu   hema   ashu    palluhema
 4    My     prog
&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Oct 2020 21:39:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691092#M210299</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-10-12T21:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691119#M210310</link>
      <description>Thank you for the solution, But my requirement is 10 length with or without space and colon. e.g. at 8th and 9th position data is present after semicolon or space then it should go in next colon (in case length = 10)&lt;BR /&gt;&lt;BR /&gt;obs1 should be new1 = hema; and new2=ashu pallu&lt;BR /&gt;obs2 should be new1= usa;swati; and new2=sujju;&lt;BR /&gt;obs3 should be new1=hema;m?; and new2=ashu pallu</description>
      <pubDate>Tue, 13 Oct 2020 02:08:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691119#M210310</guid>
      <dc:creator>pdhokriya</dc:creator>
      <dc:date>2020-10-13T02:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691125#M210311</link>
      <description>I can see obs 1 is fine but not the 2nd and 3rd obs.&lt;BR /&gt;&lt;BR /&gt;Here usa;swati; is token1 as length is 10, if space in between 2data then should be split.</description>
      <pubDate>Tue, 13 Oct 2020 02:44:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691125#M210311</guid>
      <dc:creator>pdhokriya</dc:creator>
      <dc:date>2020-10-13T02:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691148#M210318</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/55374"&gt;@pdhokriya&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the results that I have from a program that I have written:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jimbarbour_0-1602571749543.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50589iBFAF7378FD5402C1/image-size/large?v=v2&amp;amp;px=999" role="button" title="jimbarbour_0-1602571749543.png" alt="jimbarbour_0-1602571749543.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe these results are correct based on a $10 restriction.&amp;nbsp; I inserted an extra record (record 4) as follows:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt; Old = "hema;m?;ashu PROG;hema;ashu pallu;hema;ashu palluhema;";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I inserted this record because I wanted a 5 byte token ("ashu ") and another 5 byte token ("PROG;") so that I could test that the space would be preserved in the output.&amp;nbsp; It was preserved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code is below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA	abc;
	DROP	_:;
	LENGTH	Old	$256.;
	RETAIN	_Max_Tokens	0;

	Old = 	"hema;ashu pallu;hema;ashu pallu;hema;ashu pallu;hema;";
	LINK	Count_Tokens;

	Old = 	"usa;swati;sajju;priyanka;priyanka";
	LINK	Count_Tokens;

	Old = 	"hema;m?;ashu pallu;hema;ashu pallu;hema;ashu palluhema;";
	LINK	Count_Tokens;

	Old = 	"hema;m?;ashu PROG;hema;ashu pallu;hema;ashu palluhema;";
	LINK	Count_Tokens;

	Old = 	"My prog";
	LINK	Count_Tokens;

	CALL	SYMPUTX('Max_Tokens', _Max_Tokens, 'G');

	******;
	RETURN;
	******;

	************;
	Count_Tokens:
	************;
		IF	SUBSTR(Old, LENGTHN(Old), 1)		^=	';'	THEN
			Old									=	CATS(Old, ';');
		_Token_Cnt								=	COUNTC(TRANSTRN(STRIP(Old), ' ', ';'), ';');
		IF	_Token_Cnt							&amp;gt;	_Max_Tokens	THEN
			_Max_Tokens							=	_Token_Cnt;
		OLD										=	TRANSTRN(STRIP(Old), ' ', '~');
		OUTPUT;
	******;
	RETURN;
	******;
RUN;

%PUT	NOTE:  &amp;amp;=Max_Tokens;

DATA	Parsed_Data;
	DROP	_:;
	SET	abc;
	ARRAY	Tokens	[*]	$10		New1	-	New&amp;amp;Max_Tokens;

	_Token_Length								=	10;
	_Token_Nbr									=	1;
	_Total_Length								=	LENGTHN(Old);
	_Current_Position							=	1;
	_Current_Length								=	0;
	_End_of_Record								=	0;
	_Prev_Delimiter								=	0;
	_Next_Delimiter								=	0;

	LINK	Get_Next_Delimiter;

	DO	WHILE	(_Current_Position				&amp;lt;	_Total_Length);
		Tokens[_Token_Nbr]						=	SUBSTR(Old, _Current_Position, (_Next_Delimiter - _Prev_Delimiter));

		_Current_Length							=	LENGTH(Tokens[_Token_Nbr]);

		_Current_Position						=	_Current_Position + (_Next_Delimiter - _Prev_Delimiter);
		_Prev_Delimiter							=	_Next_Delimiter;
		LINK	Get_Next_Delimiter;

		IF	NOT	_End_Of_Record															AND
			_Next_Delimiter - _Prev_Delimiter	&amp;lt;=	_Token_Length	-	_Current_Length	THEN
			DO;
				Tokens[_Token_Nbr]				=	CAT(STRIP(Tokens[_Token_Nbr]), SUBSTR(Old, _Current_Position, (_Next_Delimiter - _Prev_Delimiter)));
				_Current_Position				=	(_Current_Position + _Next_Delimiter - _Prev_Delimiter);
				_Prev_Delimiter					=	_Next_Delimiter;
				LINK	Get_Next_Delimiter;
			END;

		_Token_Nbr								+	1;
	END;

	DO	_j										=	1	TO	DIM(Tokens);
		Tokens[_j]								=	TRANSTRN(Tokens[_j], '~', ' ');
	END;

	******;
	RETURN;
	******;

	******************;
	Get_Next_Delimiter:
	******************;
		IF	_Current_Position					&amp;lt;=	_Total_Length		THEN
			_Next_Delimiter						=	0;
		ELSE
			_End_of_Record						=	1;

		DO	_i	=	_Current_Position			TO	_Total_Length;
			_Current_Byte						=	SUBSTR(Old, _i, 1);
			IF	SUBSTR(Old, _i, 1)				=	'~'					THEN
				DO;
					_Next_Delimiter				=	_i;
					_i							=	_Total_Length;
				END;
			ELSE
			IF	SUBSTR(Old, _i, 1)				=	';'					THEN
				DO;
					_Next_Delimiter				=	_i;
					_i							=	_Total_Length;
				END;
		END;

	******;
	RETURN;
	******;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 14:21:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691148#M210318</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-13T14:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691218#M210352</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/55374"&gt;@pdhokriya&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thank you for the solution, But my requirement is 10 length with or without space and colon. e.g. at 8th and 9th position data is present after semicolon or space then it should go in next colon (in case length = 10)&lt;BR /&gt;&lt;BR /&gt;obs1 should be new1 = hema; and new2=ashu pallu&lt;BR /&gt;obs2 should be new1= usa;swati; and new2=sujju;&lt;BR /&gt;obs3 should be new1=hema;m?; and new2=ashu pallu&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you want to break the string in 10 character pieces just use SUBSTR().&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;new[i] = substr(old,1+(i-1)*10);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If don't want that then explain the rules.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 12:05:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691218#M210352</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-10-13T12:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create new variable by considering semicolon or spcae and split the data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691242#M210360</link>
      <description>&lt;P&gt;If you use FINDC() you can search backwards from the end of the string to find last ';'.&lt;/P&gt;
&lt;P&gt;Looks like you also want to remove semi-colons that follow the 10 character substring.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tall ;
  set have ;
  length new $%eval(&amp;amp;width+1) ;
  copy=old;
  do col=1 by 1 until(copy=' ');
    new=copy;
    loc = findc(new,';',-10);
    if loc=0 then loc=&amp;amp;width;
    copy = substrn(copy,loc+1+(substrn(copy,loc+1,1)=';'));
    new = substrn(new,1,loc);
    if col=1 or new ne ' ' then output;
  end;
run;

proc transpose data=tall out=want (drop=_name_);
  by row old;
  var new ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Results:&lt;/P&gt;
&lt;PRE&gt;Obs    row    old                                                        COL1

 1      1     hema;ashu pallu;hema;ashu pallu;hema;ashu pallu;hema;      hema;
 2      2     usa;swati;sajju;priyanka;priyanka                          usa;swati;
 3      3     hema;m?;ashu pallu;hema;ashu pallu;hema;ashu palluhema;    hema;m?;
 4      4     My prog                                                    My prog

Obs    COL2          COL3            COL4       COL5        COL6       COL7

 1     ashu pallu    hema;        ashu pallu    hema;    ashu pallu    hema;
 2     sajju;        priyanka;    priyanka
 3     ashu pallu    hema;        ashu pallu    hema;    ashu pallu    hema;
 4
&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Oct 2020 12:56:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-new-variable-by-considering-semicolon-or-spcae-and-split/m-p/691242#M210360</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-10-13T12:56:27Z</dc:date>
    </item>
  </channel>
</rss>

