9
9
### Version information:
10
10
11
11
- Package: BasePlus
12
- - Version: 2.0.0
13
- - Generated: 2024-07-23T21:51:33
12
+ - Version: 2.0.1
13
+ - Generated: 2024-07-24T07:58:59
14
14
- Author(s): Bartosz Jablonski (yabwon@gmail.com ), Quentin McMullen (qmcmullen@gmail.com )
15
15
- Maintainer(s): Bartosz Jablonski (yabwon@gmail.com )
16
16
- License: MIT
17
- - File SHA256: ` F*0730DD793516E5C193842126A7EC9D339ADADD19F0F40B071F938CABDE4E66AD ` for this version
18
- - Content SHA256: ` C*0352F7BB04B99D620BEFD33FF1B1FF1835E6F8F21CC6A764D05EEE51E77E57E0 ` for this version
17
+ - File SHA256: ` F*FB102C9B12E870666C15A651017D48E0141E47D64C11437350D0EC75A7E9E609 ` for this version
18
+ - Content SHA256: ` C*0444AC5B54150AE5424D335FF89A03D831F00F60898C99250CD59E0C5C5B0398 ` for this version
19
19
20
20
---
21
21
22
- # The ` BasePlus ` package, version: ` 2.0.0 ` ;
22
+ # The ` BasePlus ` package, version: ` 2.0.1 ` ;
23
23
24
24
---
25
25
26
26
27
- # The BasePlus package [ ver. 2.0.0 ] <a name =" baseplus-package " ></a > ###############################################
27
+ # The BasePlus package [ ver. 2.0.1 ] <a name =" baseplus-package " ></a > ###############################################
28
28
29
29
The ** BasePlus** package implements useful
30
30
functions and functionalities I miss in the BASE SAS.
@@ -4521,9 +4521,9 @@ semicolonN(X)
4521
4521
4522
4522
## ` $bpklenght. ` format/informat <a name =" bpklenght-formats-49 " ></a > ######
4523
4523
4524
- ## >>> ` bpklenght ` format/informat: <<< <a name =" bpklenght -format" ></a > #######################
4524
+ ## >>> ` bpklength ` format/informat: <<< <a name =" bpklength -format" ></a > #######################
4525
4525
4526
- The ** bpklenght ** format and informats uses the ` klength() ` function
4526
+ The ** bpklength ** format and informats uses the ` klength() ` function
4527
4527
to count the number of letters in a word. For empty string returns 0.
4528
4528
4529
4529
@@ -4533,9 +4533,9 @@ to count the number of letters in a word. For empty string returns 0.
4533
4533
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sas
4534
4534
data work.count_letters;
4535
4535
input x $ 32.;
4536
- n = input (x, bpklenght .);
4537
- c = input (x, $bpklenght .);
4538
- format x $bpklenght .;
4536
+ n = input (x, bpklength .);
4537
+ c = input (x, $bpklength .);
4538
+ format x $bpklength .;
4539
4539
cards;
4540
4540
ż
4541
4541
żó
@@ -4570,7 +4570,7 @@ data _null_;
4570
4570
length x $ 32767;
4571
4571
do i = 32767/3 to 0 by -1111, 10 to 0 by -1;
4572
4572
x=repeat("空",i);
4573
- put x $bpklenght .;
4573
+ put x $bpklength .;
4574
4574
end;
4575
4575
run;
4576
4576
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -4582,9 +4582,9 @@ run;
4582
4582
4583
4583
## ` $bplenght. ` format/informat <a name =" bplenght-formats-50 " ></a > ######
4584
4584
4585
- ## >>> ` bplenght ` format/informat: <<< <a name =" bplenght -format" ></a > #######################
4585
+ ## >>> ` bplength ` format/informat: <<< <a name =" bplength -format" ></a > #######################
4586
4586
4587
- The ** bplenght ** format and informats use the ` lengthn() ` function
4587
+ The ** bplength ** format and informats use the ` lengthn() ` function
4588
4588
to count the number of bytes in a word.
4589
4589
4590
4590
@@ -4594,9 +4594,9 @@ to count the number of bytes in a word.
4594
4594
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sas
4595
4595
data work.count_bytes;
4596
4596
input x $ 32.;
4597
- n = input (x, bplenght .);
4598
- c = input (x, $bplenght .);
4599
- format x $bplenght .;
4597
+ n = input (x, bplength .);
4598
+ c = input (x, $bplength .);
4599
+ format x $bplength .;
4600
4600
cards;
4601
4601
ż
4602
4602
żó
@@ -4631,7 +4631,7 @@ data _null_;
4631
4631
length x $ 32767;
4632
4632
do i = 32767/3 to 0 by -1111, 10 to 0 by -1;
4633
4633
x=repeat("空",i);
4634
- put x $bplenght .;
4634
+ put x $bplength .;
4635
4635
end;
4636
4636
run;
4637
4637
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments