SAS中的刪除空格相關函式

2021-07-30 23:37:43 字數 604 閱讀 6710

left函式:               刪除字串左邊(開頭》 的空格和

right函式:         刪除字串右邊(結尾》 的空格

trim函式:          刪除字串右邊(結尾》 的空格 

strip函式:            刪除字串前後空格

compress函式: 刪除字串中所有空格

compbl函式:      將連續兩個或以上的空格壓縮為1個空格 

data test; 

x=' 123456 ';

strl='a'|lleft(x)||'b'; 

str2='a'||right(x)||'b'; 

str3='a'||trim(x)||'b'; 

str4='a'||strip(x)||'b'; 

str5='a'||compress(x)||'b';

str6='a'||compbl(x)||'b'; 

run;

proc print;

run;

輸出結果如下:

SAS中的剔除空格函式

left函式 刪除字串左邊 開頭 的空格 right函式 刪除字串右邊 結尾 的空格 trim函式 刪除字串右邊 結尾 的空格 strip函式 刪除字串前後空格 compress函式 刪除字串中所有空格 compbl函式 將連續兩個或以上的空格壓縮為1個空格 例如 data test x 123 4...

sql 刪除記錄中的空格方法

sql 刪除記錄中的空格方法 檢視含有空格的記錄 select from student where charindex name 0 刪除左空格 update student set name rtrim name where charindex name 0 刪除右空格 update stude...

字串中刪除空格

cstring strlogpathname m strprjpathname char dirver max drive path max path filename max fname ext max ext splitpath strlogpathname.getbuffer 1024 dir...