-
Notifications
You must be signed in to change notification settings - Fork 2
/
_tr.sas
69 lines (51 loc) · 1.92 KB
/
_tr.sas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
%put NOTE: You have called the macro _TR, 2009-10-07.;
%put NOTE: Copyright (c) 2001-2009 Rodney Sparapani;
%put;
/*
Author: Rodney Sparapani <[email protected]>
Created: 2001-00-00
This file is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this file; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* _TR Documentation
Similar to the DATASTEP function TRANSLATE().
DEPRECATED: _TRANSLATE() is more robust.
POSITIONAL Parameters
ARG1 the text to be translated
NAMED Parameters
FROM= the characters to be translated from
TO= the characters to be translated to
*/
%macro _tr(arg1, to=, from=);
%if %length(&to)^=%length(&from) %then %put ERROR: to-list and from-list must be of equal length.;
%else %do;
%local i j k ch_to ch_from;
%let k=%length(&arg1);
%do i=1 %to %length(&from);
%let ch_from=%substr(&from,&i,1);
%let ch_to=%substr(&to,&i,1);
%let j=%index(&arg1,&ch_from);
%do %while(&j);
%if &j=1 %then %let arg1=&ch_to%substr(&arg1,2);
%else %if &j=&k %then %let arg1=%substr(&arg1,1,&k-1)&ch_to;
%else %let arg1=%substr(&arg1,1,&j-1)&ch_to%substr(&arg1,&j+1);
%let j=%index(&arg1,&ch_from);
%end;
%end;
&arg1
%end;
%mend _tr;
%*VALIDATION TEST STREAM;
/* un-comment to re-validate
%put %_tr(please dont eat the daisies,from=eai,to=xyz);
%put %_tr(please_dont_eat_the_daisies,from=_ai,to=...);
*/