here is a string like chq.2312244%4452-
from that i want only special characters in a column.
dont use compress. bcoz i have 1.2 billion of records.i want
another process to find the values instant from the data.
Answers were Sorted based on User's Feedback
Answer / krish
data spdot;
set spec_char;
if count(name,'.') ge 1 then dot=".";
if count(name,'%') ge 1 then per="%";
if count(name,"-") ge 1 then iph= "-";
col=(dot || per ||iph);
run;proc print;run;
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / krish
data spdot;
set spec_char;
if count(name,'.') then dot=".";
if count(name,'%') then per="%";
if count(name,"-") then iph= "-";
col=(dot || per ||iph);
run;proc print;run;
| Is This Answer Correct ? | 5 Yes | 2 No |
How would you include common or reuse to be processed along with your statements?
what is the primary variable in your study?
who is the best SAS clinical Trainer in Hyderabad?
What statement do you code to tell SAS that it is to write to an external file? What statement do you code to write the record to the file?
what has been your most common programming mistake? : Sas programming
what is proc Index? and what is proc document?
What are the implications?
What is the order of evaluation of the comparison operators: + - * /** ()?
In ARRAY processing, what does the DIM function do?
explain the key concept of sas? : Sas-administrator
What is highest missing value for numeric?
I Here clinical SAS training by Ramesh Azmeera is good. Is it confirm ?