3 -- Grant of Unlimited Rights
5 -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
6 -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
7 -- unlimited rights in the software and documentation contained herein.
8 -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
9 -- this public release, the Government intends to confer upon all
10 -- recipients unlimited rights equal to those held by the Government.
11 -- These rights include rights to use, duplicate, release or disclose the
12 -- released technical data and computer software in whole or in part, in
13 -- any manner and for any purpose whatsoever, and to have or permit others
18 -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
19 -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
20 -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
21 -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
22 -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
23 -- PARTICULAR PURPOSE OF SAID MATERIAL.
33 -- This test consists of the following files:
41 -- 06 Dec 94 SAIC ACVC 2.0
42 -- 02 Nov 96 SAIC ACVC 2.1: Modified prologue.
47 package FB40A00
.CB40A030_0
is -- package Text_Parser.Character_Counting
49 function Count_AlphaNumerics
(Text
: in String) return Natural;
51 end FB40A00
.CB40A030_0
;
54 --=================================================================--
57 private package FB40A00
.CB40A030_1
is -- package Text_Parser.Processing
59 procedure Process_Text
(Text
: in String);
61 end FB40A00
.CB40A030_1
;
64 --=================================================================--
67 package body FB40A00
.CB40A030_1
is
69 procedure Process_Text
(Text
: in String) is
70 Loop_Count
: Integer := Text
'Length + 1;
72 for Pos
in 1..Loop_Count
loop -- Process string, force the
73 -- raise of Constraint_Error.
74 if (Text
(Pos
) in 'a'..'z') or
75 (Text
(Pos
) in 'A'..'Z') or
76 (Text
(Pos
) in '0'..'9') then
77 Increment_AlphaNumeric_Count
;
79 Increment_Non_AlphaNumeric_Count
;
83 -- No exception handler here, exception propagates.
86 end FB40A00
.CB40A030_1
;
89 --=================================================================--
92 with FB40A00
.CB40A030_1
; -- private sibling package Text_Parser.Processing;
94 package body FB40A00
.CB40A030_0
is
96 function Count_AlphaNumerics
(Text
: in String) return Natural is
98 FB40A00
.CB40A030_1
.Process_Text
(Text
); -- Call proc in prvt child
100 -- sibling of this package.
101 return (AlphaNumeric_Count
);
102 -- No exception handler here, exception propagates.
103 end Count_AlphaNumerics
;
105 end FB40A00
.CB40A030_0
;