电子说
1.SCAN函数:从字符表达式s中搜取给定的n个单词
WORD = SCAN(source,n,delimiters );
(1)如果n为负数,则SCAN选择字符串中从字符串末尾开始的单词。如果|n|大于字符串中的字数,则SCAN返回一个空白值。
(2)Delimiters可以是Blank . < ( + | & ! $ * ) ; - / , % ^
/ SCAN函数应用举例 /
data test1;
name='john smith';
firstname = scan(name,1);
lastname = scan(name,2);
a='d:\\risk1\\uscc\\datapull.sas';
fn=scan(a,-1,'');
run;
/ 结果如下: /
2.INDEX函数:搜索字符参数
如果找到字符参数,则返回它在字符值中的位置,如果找不到,则返回0。
INDEX = INDEX(source, except);
Source: 待查找的字符变量.
Except: 要查找的字符参数
/ INDEX函数应用举例 /
data test2;
length reason $100;
line = 'ERROR 180-322: Statement is not valid or it is out of proper order.';
index = index(line, 'ERROR');
put 'index= ' index;
if index > 0 then
put line;
index2 = index(line, ':');
put 'index2= ' index2;
if index2 > 0 then
reason = substr(line, index2);
put'REASON' reason;
run;
/ 结果如下: /
补充:大小写设置
转变所有的字母:
varu=upcase(argument);
varl=lowcase(argument);
var=propcase(argument)首字母大写;
3.FIND函数:在您指定的字符串中搜索特定的字符子字符串 。
FIND(string,substring<,modifiers><,startpos>)
string是要在其中搜索的字符串或字符变量名称,
substring是要在字符串中搜索的字符串。返回substring首次在string中出现的位置,若未找到,则返回0。
startpos指定从 string的何处开始搜索substring,正值从左至右,负值反向。
Modifier=I,搜索时忽略大小写,默认区分大小写。
/ FIND函数应用举例 /
data test3;
string1='1234567890';
pos1=find(string1, '3');
put 'pos1=' pos1;
string2='c:\\project1\\analysis\\distribution.sas';
pos2=find(string2, '\\', -100);
put 'pos2=' pos2;
string3='The search is Case Sensitive';
pos3=find(string3, 'case');
put 'pos3=' pos3;
string4='The search is not Case Sensitive';
pos4=find(string4, 'case', 'i');
put 'pos4=' pos4;
string5=upcase(string4);/*将字符串转换为大写*/
pos5=index(string5,'CASE');
put 'pos5=' pos5;
run;
/ 结果如下: /
然而两类Function之间不同的是:FIND类Function有一些INDEX类Function所不具有的功能,包括:
(1)FIND类可以检索所检索目标的”首次“出现位置;
(2)FIND类可以指定检索的方向(如:自左向右,自右向左);
(3) FIND类可以忽略字符串的大小写或末尾的空格。
4.COMPRESS函数:用以体剔除或保留特定字符
COMPRESS(string<,chars ><,modifiers>)
String指定一个要移除字符的源字符串,
Chars指定一栏初始字符,默认它是从string里移除的
Modifiers指定一个修饰语,函数的具体功能。如:
/ COMPRESS函数应用举例 /
data test4;
string1=" Sunlights";
new1=compress(string1);
new2=compress(string1,'S');
new3=compress(string1,"S","K");/*从源字符串中返回字符"S"*/
new4=compress(string1,"s","U");/*从源字符串中将字符"s"及大写字母剔除*/
run;
/ 结果如下: /
补充:
1.只有string,移除空格。
2.只有string,chars时,从source中移除chars。
5. CAT函数:用以拼接字符串
CAT(string1, ... , stringn):连接字符串不去除空格
CATT(string1, ... , stringn):去除尾部空格连接
CATS(string1, ... , stringn):移除前后空格连接 trim删除右侧空格
CATX(separator, string1, ... , stringn):移除首位空格,插入特定字符连接
/*代码相当于: */
CAT(OF X1-X3) = X1||X2||X3
CATT(OF X1-X3)= TRIM(X1)||TRIM(X2)||TRIM(X3)
CATS(OF X1-X3)= TRIM(LEFT(X1))||TRIM(LEFT(X2))||TRIM(LEFT(X3))
CATX(SP, OF X1-X3)=TRIM(LEFT(X1))||SP||TRIM(LEFT(X2))||SP||
TRIM(LEFT(X3))
/ CAT函数应用举例 /
data test5;
length a1 a3 $10 a2 a4 8;
a1='aaa';
a2=1234;
a3='bbb';
a4=5678;
line1=cat(of a1-a4);
put line1;
line2=catx(',',of a1-a4);
put line2;
run;
/ 结果如下 /
全部0条评论
快来发表一下你的评论吧 !