At the end of this question, it looks like you are asking for help in Ada string processing.
Yes, Ada strings are indeed best handled as static strings, rather than resizable buffers. There are three typcial ways to deal with this.
The first is to make a really big String buffer, with a separate Natural variable to hold the logical length of the string. This is kind of a pain, and is somewhat error prone, but is at least faster than C's method of constantly scanning for a null at the end of the buffer.
The second is to just punt and use Ada.Strings.Unbounded.Unbounded_String. This is what most folks do, as it is easiest if you are used to thinking of things in a procedural way.
The third, (which I prefer when possible) is to handle your strings functionally. The main insight you need here is that Ada Strings are indeed static, but you can control their lifetime, and you can dynamically make static strings whenever you want, if you program functionally.
For instance, I can create a new Token string of whatever length I want (with theoretically infinite lookahead) by doing something like the following:
function Matches_Token (Scanned : String) return boolean; --// Returns true if the given string is a token
function Could_Match_Longer (Scanned : String) return boolean; --// Returns true if the given string could be part of a larger token.
function Get_Next_Char return Character; --// Returns the next character from the stream
procedure Unget; --// Puts the last character back onto the stream
procedure Advance (Amount : Natural); --// Advance the stream pointer the given amount
function Longest_Matching_Token (Scanned : String) return String is
New_Token : constant String := Scanned & Get_Next_Char;
begin
--// Find the longest token a further scan can match
if Could_Match_Longer(New_Token) then
declare
LMT : constant String := Longest_Matching_Token (New_Token);
begin
if LMT /= "" then
unget;
return LMT;
end if;
end;
end if;
--// See if this string at least matches.
if Matches_Token(New_Token) then
unget;
return New_Token;
else
unget;
return "";
end if;
end Build_Token;
function Get_Next_Token return String is
Next_Token : constant String := Build_Token("");
begin
Advance (Next_Token'length);
return Next_Token;
end Get_Next_Token;
This isn't always the most efficient method of string handling (too much stack usage), but it is often the easiest.
In practice, scanning and parsing is actually kind of a special-case application, where ugly things one typically avoids, like buffers (method 1) and gotos, are often advisable.