由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - How to remove the last charater using SAS? (BAO ZI)
相关主题
[合集] SAS array problem请问SPSS 或者 SAS中变量名的变换 AABB - BBAA
convert varibles in SAS问一个sas的问题4
SAS问题请教, keep/drop[合集] Question in Excel
A SAS problem有没有SAS最新的机经
a question about length assignmentSAS 小问题求助!!
another sas question问一个简单的SAS问题,多谢
还问道SAS的题目mysql 问题
问一SAS Base的题目请问:为什么if then 在do loop 中就不起作用了呢?
相关话题的讨论汇总
话题: 567890话题: 123话题: sas话题: zi话题: bao
进入Statistics版参与讨论
1 (共1页)
s***r
发帖数: 1121
1
Varible
1234
123
567890
....
I want to remove the last digit; that is, 1234 -> 123; 123-> 12; 567890->
56789.
Anyone can help me? Thanks a lot.
One baozi will be given for your kind help.
s*****b
发帖数: 106
2
If Char use, Substr from the 1 digit to (length-1)th digit,
If Numeric(and integer), use floor(X/10).

【在 s***r 的大作中提到】
: Varible
: 1234
: 123
: 567890
: ....
: I want to remove the last digit; that is, 1234 -> 123; 123-> 12; 567890->
: 56789.
: Anyone can help me? Thanks a lot.
: One baozi will be given for your kind help.

Y****a
发帖数: 243
3

是不是还要确定所有数值都靠左或靠右,然后再做适当处理

【在 s*****b 的大作中提到】
: If Char use, Substr from the 1 digit to (length-1)th digit,
: If Numeric(and integer), use floor(X/10).

K*********r
发帖数: 299
4

compress了先

【在 Y****a 的大作中提到】
:
: 是不是还要确定所有数值都靠左或靠右,然后再做适当处理

w********5
发帖数: 72
5
data file;
input num;
cards;
1234
123
567890
;
run;
data file1;
set file;
num_new=int(num/10);
run;
i******r
发帖数: 323
6
if character values, you can try:
data test;
length x $50;
input x $;
cards;
1234
456
311
978
;
data t2;
set test;
x=substr(left(x), 1, length(x)-1);
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
请问:为什么if then 在do loop 中就不起作用了呢?a question about length assignment
CRO SAS Interview questionsanother sas question
SAS simple question还问道SAS的题目
一个SAS 问题,紧急!问一SAS Base的题目
[合集] SAS array problem请问SPSS 或者 SAS中变量名的变换 AABB - BBAA
convert varibles in SAS问一个sas的问题4
SAS问题请教, keep/drop[合集] Question in Excel
A SAS problem有没有SAS最新的机经
相关话题的讨论汇总
话题: 567890话题: 123话题: sas话题: zi话题: bao