<?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: Select text from brackets in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/691551#M210498</link>
    <description>&lt;P&gt;OK, great. &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&amp;nbsp; Perhaps we can mark this topic as solved, then?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
    <pubDate>Wed, 14 Oct 2020 14:47:05 GMT</pubDate>
    <dc:creator>jimbarbour</dc:creator>
    <dc:date>2020-10-14T14:47:05Z</dc:date>
    <item>
      <title>Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689652#M209671</link>
      <description>&lt;P&gt;Hi all!&amp;nbsp;&lt;BR /&gt;Pleas help me with my problem..i want select text from brackets, but i don't khow how to do it.&lt;BR /&gt;For example i have 3 values in one variable - var&lt;BR /&gt;What i have:&lt;BR /&gt;var:&amp;nbsp; 1&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;I'm falling. (&lt;/SPAN&gt;&lt;SPAN&gt;In all the good times I find) myself&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp;Longin (for change) a&lt;/SPAN&gt;&lt;SPAN&gt;nd in the bad times (I fear myself)&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;Tell me something, boy (a&lt;/SPAN&gt;&lt;SPAN&gt;ren't you (tired) tryin' to fill that void?)&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i want:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;In all the good times I find&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;I fear myself&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp;aren't you (tired) tryin' to fill that void?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;i wtite something like this, but for second value this dont work..&lt;BR /&gt;data New;&lt;BR /&gt;set Old;&lt;BR /&gt;str_pos = find(var, "(");&lt;BR /&gt;end_pos = find(var, ")", -length(var));&lt;BR /&gt;len = end_pos - str_pos;&lt;BR /&gt;want = substrn(var, str_pos+1, len-1);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;for second value my code prodused this:&amp;nbsp;for change) and in the bad times (I fear myself&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 18:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689652#M209671</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-07T18:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689677#M209678</link>
      <description>&lt;P&gt;If there are two parenthetical expressions in one variable, do you consistently want the second one?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 19:15:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689677#M209678</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-07T19:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689716#M209686</link>
      <description>&lt;BR /&gt;Hi Jim! Yes, i need the second one</description>
      <pubDate>Wed, 07 Oct 2020 20:13:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689716#M209686</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-07T20:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689764#M209700</link>
      <description>&lt;P&gt;One way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input STR :&amp;amp; $80.;
cards;
I'm falling. (In all the good times I find) myself
Longin (for change) and in the bad times (I fear myself) 
Tell me something, boy (aren't you (tired) tryin' to fill that void?) 
run;

data WANT;
  set HAVE;
  STR1=prxchange('s/ ( \( [^(]* ) \( ( [^)]* ) \) ( [^)]* \) ) /\1^\2#\3/x',-1,STR);
  STR2=prxchange('s/ .* \( ( .* ) \) [^)(]* \Z/\1/x',1,STR1);
  STR3=translate(STR2,'()','^#');
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="branch"&gt;&lt;BR /&gt;
&lt;DIV&gt;
&lt;DIV align="left"&gt;
&lt;TABLE class="table" summary="Procedure Print: Data Set WORK.WANT" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;&lt;COLGROUP&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="l header" scope="col"&gt;&lt;FONT size="2"&gt;STR&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;&lt;FONT size="2"&gt;STR1&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;&lt;FONT size="2"&gt;STR2&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;&lt;FONT size="2"&gt;STR3&lt;/FONT&gt;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;I'm falling. (In all the good times I find) myself&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;I'm falling. (In all the good times I find) myself&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;In all the good times I find&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;In all the good times I find&lt;/FONT&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;Longin (for change) and in the bad times (I fear myself)&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;Longin (for change) and in the bad times (I fear myself)&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;I fear myself&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;I fear myself&lt;/FONT&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;Tell me something, boy (aren't you (tired) tryin' to fill that void?)&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;Tell me something, boy (aren't you ^tired# tryin' to fill that void?)&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;aren't you ^tired# tryin' to fill that void?&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD class="l data"&gt;&lt;FONT size="2"&gt;aren't you (tired) tryin' to fill that void?&lt;/FONT&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 22:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689764#M209700</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-10-07T22:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689765#M209701</link>
      <description>&lt;P&gt;Why don't you try the following program?&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	Lyrics;
	INFILE	Datalines	MISSOVER;
	LENGTH	Text		$1026;
	INPUT	Text	&amp;amp;	$;
DATALINES;
I'm falling. (In all the good times I find) myself
Longin (for change) and in the bad times (I fear myself) 
Tell me something, boy (aren't you (tired) tryin' to fill that void?) 
;
RUN;

DATA	Extracted_Text;
	DROP	_:;
	SET	Lyrics;

	_Left_Paren_Cnt						=	COUNTC(Text, '(');

	IF	_Left_Paren_Cnt					&amp;gt;	2					THEN
		DO;
			PUTLOG	'WARNING:  Encountered more left parentheses than expected.  Using whole record.';
		END;
	ELSE
	IF	_Left_Paren_Cnt					=	2					THEN
		DO;
			_First_Right_Paren			=	INDEX(Text, ')');
			_Next_Right_Paren			=	INDEX(SUBSTR(Text, _First_Right_Paren + 1), ')') + _First_Right_Paren;
			_First_Left_Paren			=	INDEX(Text, '(');
			_Next_Left_Paren			=	INDEX(SUBSTR(Text, _First_Left_Paren + 1), '(') + _First_Left_Paren;
			IF	_Next_Left_Paren		&amp;lt;	_First_Right_Paren	THEN
				DO;
					Text				=	SUBSTR(Text, (_First_Left_Paren + 1), (_Next_Right_Paren - _First_Left_Paren - 1));
				END;
			ELSE
				DO;
					Text				=	SUBSTR(Text, (_Next_Left_Paren + 1), (_Next_Right_Paren - _Next_Left_Paren - 1));
				END;
		END;
	ELSE
	IF	_Left_Paren_Cnt					=	1					THEN
		DO;
			Text						=	SUBSTR(Text, INDEX(Text, '(') + 1, INDEX(Text, ')') - INDEX(Text, '(') - 1);
		END;
	ELSE
		DO;
			PUTLOG	'WARNING:  No left parentheses are in the text.  Using whole record.';
		END;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 07 Oct 2020 22:39:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/689765#M209701</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-07T22:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690129#M209898</link>
      <description>Thank you very much, Jim!!!&lt;BR /&gt;It is work. But, I saw that the data have errors, for example, an unclosed parenthesis, which looks like this: Longin (for change) and in the bad times (I (fear myself)&lt;BR /&gt;&lt;BR /&gt;Сould you please help me to account for this problem?&lt;BR /&gt;In this case i need to get someting like that: (I (fear myself) )</description>
      <pubDate>Thu, 08 Oct 2020 18:18:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690129#M209898</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-08T18:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690130#M209899</link>
      <description>&lt;P&gt;OK, that should not be too hard.&amp;nbsp; I have some things to do right now, but let me look at this in a little be later.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 18:20:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690130#M209899</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-08T18:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690132#M209900</link>
      <description>Thank you a lot!!!&lt;BR /&gt;This code cuts down the program significantly. Could you tell me please where I can read about regular expressions in sas?&lt;BR /&gt;Is it possible to get someting like this: (I (fear myself) ) if i have string with issue: Longin (for change) and in the bad times (I (fear myself) ?</description>
      <pubDate>Thu, 08 Oct 2020 18:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690132#M209900</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-08T18:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690149#M209908</link>
      <description>Ok, thank you! )</description>
      <pubDate>Thu, 08 Oct 2020 19:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690149#M209908</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-08T19:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690176#M209929</link>
      <description>&lt;P&gt;SAS uses Perl regular expressions. There are countless tutorials on the web, that's how I learnt.&lt;BR /&gt;Rather than write crazy complicated code to cater for weird data, it's best to clean the data before processing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 22:04:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690176#M209929</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-10-08T22:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690204#M209953</link>
      <description>Thank you)</description>
      <pubDate>Thu, 08 Oct 2020 21:16:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690204#M209953</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-08T21:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690214#M209960</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/351284"&gt;@Christen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lot's of things to do today, but I finally got a chance to look at the code.&amp;nbsp; Please try the below revision.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;has a good point that sometimes it's good to clean up the data instead of spending too much time writing overly complex code.&amp;nbsp; However, do please try the program below and let me know how it goes.&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;%LET	Max_Paren							=	3;
%LET	db									=	*;

DATA	Extracted_Text;
	DROP	_:;
	SET	Lyrics;
	ARRAY	_L_Paren	[*]		_L_Paren1	-	_L_Paren&amp;amp;Max_Paren;
	ARRAY	_R_Paren	[*]		_R_Paren1	-	_R_Paren&amp;amp;Max_Paren;

	LINK	Get_Parens;

	IF	_L_Paren_Cnt						&amp;gt;	1							THEN
		DO;
			IF	_L_Paren[_L_Paren_Cnt]		&amp;lt;	_R_Paren[_L_Paren_Cnt - 1]	THEN
				DO;
					Text					=	SUBSTR(Text, _L_Paren[_L_Paren_Cnt - 1] + 1, _R_Paren[_L_Paren_Cnt] - _L_Paren[_L_Paren_Cnt - 1] - 1);
&amp;amp;db					PUTLOG	"&amp;amp;Nte1  A. "  _L_Paren_Cnt=  _L_Paren[_L_Paren_Cnt - 1]=  _R_Paren[_L_Paren_Cnt]=  Text=;
				END;
			ELSE
				DO;
					Text					=	SUBSTR(Text, _L_Paren[_L_Paren_Cnt] + 1, _R_Paren[_L_Paren_Cnt] - _L_Paren[_L_Paren_Cnt] - 1);
&amp;amp;db					PUTLOG	"&amp;amp;Nte1  B. "  _L_Paren_Cnt=  _L_Paren[_L_Paren_Cnt]=  _R_Paren[_L_Paren_Cnt]=  Text=;
				END;		
		END;
	ELSE
		IF	_L_Paren_Cnt					=	1							THEN
			DO;
				Text						=	SUBSTR(Text, _L_Paren[1] + 1, _R_Paren[1] - _L_Paren[1] - 1);
&amp;amp;db				PUTLOG	"&amp;amp;Nte1  C. "  _L_Paren_Cnt=  _L_Paren[1]=  _R_Paren[1]=  Text=;
			END;
	ELSE
		DO;
			PUTLOG	'WARNING:  No left parentheses are in the text.  Using whole record.';
		END;

	******;
	RETURN;
	******;

	**********;
	Get_Parens:
	**********;
		_Temp								=	LENGTHN(Text);
&amp;amp;db		PUTLOG	"&amp;amp;Nte2  ";
&amp;amp;db		PUTLOG	"&amp;amp;Nte1  "  _N_=  _Temp=  ' (Text length)';

		_L_Paren_Cnt						=	COUNTC(Text, '(');
		_p									=	0;
		DO	_i								=	1	TO	_L_Paren_Cnt	
			UNTIL						(_p	=	0); 
			_p								=	FIND(Text, '(', (_p + 1));
			_L_Paren[_i]					=	_p;
		END;

		_R_Paren_Cnt						=	COUNTC(Text, ')');
		_p									=	0;
		DO	_i								=	1	TO	_R_Paren_Cnt	
			UNTIL						(_p	=	0); 
			_p								=	FIND(Text, ')', (_p + 1));
			_R_Paren[_i]					=	_p;
		END;

		IF	_L_Paren_Cnt					=	_R_Paren_Cnt	+	1	THEN
			DO;
				_R_Paren[_L_Paren_Cnt]		=	LENGTHN(Text)	+	1;
&amp;amp;db				PUTLOG	"&amp;amp;Nte1  D. "  _R_Paren[_L_Paren_Cnt]=  ' (Text length)';
			END;
	******;
	RETURN;
	******;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Oct 2020 22:19:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/690214#M209960</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-08T22:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/691512#M210482</link>
      <description>Thank you! It works=)</description>
      <pubDate>Wed, 14 Oct 2020 12:26:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/691512#M210482</guid>
      <dc:creator>Christen</dc:creator>
      <dc:date>2020-10-14T12:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from brackets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/691551#M210498</link>
      <description>&lt;P&gt;OK, great. &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&amp;nbsp; Perhaps we can mark this topic as solved, then?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 14:47:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-text-from-brackets/m-p/691551#M210498</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-14T14:47:05Z</dc:date>
    </item>
  </channel>
</rss>

