BookmarkSubscribeRSS Feed
chedrbalingit
Calcite | Level 5

Hi,

 

Is there a function that determines the position of the same character in a string. For example, I want to know the position of the characters 'B' in a string BAAABAABAB. I am expecting the results: 1,5,8,and 10.

 

 

Thanks!

5 REPLIES 5
jklaverstijn
Rhodochrosite | Level 12

The FIND() function is perfectly suited for this because it allows for a start position inside the searched string:

 

data _null_;
	string='ABAAABAABAB';
	pos = 0;

	do until (pos = 0);
		pos = find (string, 'B', pos+1);
		if pos>0 then put pos=;
	end;
run;

 

Hope this helps,

- Jan.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

For example:

data want (drop=i);
  length result $200;
  val="BAAABAABAB";
  do i=1 to lengthn(val);
    if char(val,i)="B" then result=catx(",",result,strip(put(i,best.)));
  end;
run;
Ksharp
Super User
data _null_;
x='BAAABAABAB';
do i=1 to length(x);
 if char(x,i)='B' then putlog 'Position:' i;
end;
run;


user24feb
Barite | Level 11

I think there is room for interpretation what exactly you would like to do:

 

%Let Max_Len=20; *!!;

Data A;
  Attrib Txt Length=$&Max_Len.;
  Txt='AABBBBAAAAAABBABAB'; Output;
  Txt='GDFSCCCDD'; Output;
  Txt='DFDCZ'; Output;
Run;

Data _NULL_;
  Length Letters $300.;
  Letters='Capital_A';
  Do i=2 To 26; 
    Letters=Catt(Letters,' Capital_',Byte(i+64));
  End;
  Call SymputX('Letters',Letters);
Run;

Data Want;
  Set A;
  Array C_[*] $%Eval(&Max_Len*4) &Letters. ;
  Do i=1 To &Max_Len.;
    dummy=Substr(Txt,i,1);
	ascii=Rank(dummy);
    If ascii ne 32 Then Do;
      If not Missing (C_[ascii-64]) Then C_[ascii-64]=Catt(C_[ascii-64],', ',Put(i,Best4.));
	  Else C_[ascii-64]=Trim(Put(i,Best4.));
	End;
  End;
  Do i=1 To Dim(C_);
    Character=VName(C_[i]);
	Positions=C_[i];
	If not Missing (Positions) Then Output;
  End;
  Drop &Letters. dummy ascii i;
Run;
jklaverstijn
Rhodochrosite | Level 12

Nice piece of code, @user24feb. Would you like to share what interpretation your solution is based upon?

 

My native language has no direct translation of "convoluted". I miss that.

 

Regards,

- Jan.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 3732 views
  • 0 likes
  • 5 in conversation