Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Ada > Re: Converting ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 9 of 27 Topic 5627 of 5831
Post > Topic >>

Re: Converting Type Characters to type string

by "Dmitry A. Kazakov" <mailbox@[EMAIL PROTECTED] > Mar 31, 2008 at 04:21 PM

On Mon, 31 Mar 2008 06:50:32 -0700 (PDT), jedivaughn wrote:

> The only problem I'm having is that I don't want to have to add a
> space or another character to the end of my string of numbers. As long
> as I set str : strin (1..999) := (others -> ' '); I can get all the
> characters I want but they have to be followed by something other then
> for a digit. Is there a way to get an input of a length unknown
> without having to take an extra character? 0ne user suggested the
> look_ahead  procedure if that would help solve this how would I use
> that?

Can you tell us what do you want to achieve?

Normally, you would read a source line using Get_Line of Ada.Text_IO. Then
you would process the obtained string. The former is clear. What is about
the latter? What do you want to parse? Integer numbers?

with Ada.Text_IO;            use Ada.Text_IO;
with Strings_Edit.Integers;  use Strings_Edit.Integers;

procedure Numeric_Input is
begin
   loop
      Put_Line ("Enter a number:");
      declare
         Input  : constant String := Get_Line; -- (Ada 2005)
         Number : Integer;
      begin
         exit when Input'Length = 0;
         Number := Value (Input);
         Put_Line ("You typed " & Image (Number));
      exception
         when Data_Error =>
            Put_Line ("Bad input, possibly more than one number");
         when End_Error =>
            Put_Line ("No number found");
         when Constraint_Error =>
            Put_Line ("The number is too large");
      end;
   end loop;
end Numeric_Input;   

-- 
Regards,
Dmitry A. Kazakov
http://www.dmitry-kazakov.de
 




 27 Posts in Topic:
Re: Converting Type Characters to type string
Georg Bauhaus <rm.plus  2008-03-30 23:48:32 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-03-30 16:52:58 
Re: Converting Type Characters to type string
george.priv@[EMAIL PROTEC  2008-03-30 20:04:38 
Re: Converting Type Characters to type string
tmoran@[EMAIL PROTECTED]   2008-03-30 23:00:17 
Re: Converting Type Characters to type string
Ludovic Brenta <ludovi  2008-03-31 01:54:24 
Re: Converting Type Characters to type string
"Dmitry A. Kazakov&q  2008-03-31 11:59:30 
Re: Converting Type Characters to type string
Jean-Pierre Rosen <ros  2008-03-31 12:59:28 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-03-31 06:50:32 
Re: Converting Type Characters to type string
"Dmitry A. Kazakov&q  2008-03-31 16:21:36 
Re: Converting Type Characters to type string
Ludovic Brenta <ludovi  2008-03-31 07:11:07 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-03-31 07:44:52 
Re: Converting Type Characters to type string
"Dmitry A. Kazakov&q  2008-03-31 17:45:21 
Re: Converting Type Characters to type string
Adam Beneschan <adam@[  2008-03-31 08:41:25 
Re: Converting Type Characters to type string
Maciej Sobczak <see.my  2008-03-31 13:26:36 
Re: Converting Type Characters to type string
Georg Bauhaus <rm.tsoh  2008-04-01 00:06:22 
Re: Converting Type Characters to type string
Adam Beneschan <adam@[  2008-03-31 15:33:45 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-03-31 18:00:03 
Re: Converting Type Characters to type string
Simon Wright <simon.j.  2008-04-01 06:34:17 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-04-01 04:22:55 
Re: Converting Type Characters to type string
Simon Wright <simon.j.  2008-04-01 22:11:26 
Re: Converting Type Characters to type string
tmoran@[EMAIL PROTECTED]   2008-04-03 00:54:01 
Re: Converting Type Characters to type string
Adam Beneschan <adam@[  2008-04-03 07:38:57 
Re: Converting Type Characters to type string
"jimmaureenrogers@[E  2008-04-01 05:00:49 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-04-01 06:22:49 
Re: Converting Type Characters to type string
Adam Beneschan <adam@[  2008-04-01 09:58:20 
Re: Converting Type Characters to type string
Adam Beneschan <adam@[  2008-04-01 10:03:47 
Re: Converting Type Characters to type string
jedivaughn <jedivaughn  2008-04-01 15:22:11 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Fri Jul 25 20:53:01 CDT 2008.