www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - std.string.atoi should throw exception

reply Dawid =?UTF-8?B?Q2nEmcW8YXJraWV3aWN6?= <dawid.ciezarkiewicz gmail.com> writes:
I can't find isInt(char[] s) or something like atoi throwing exception
(name: toInt(char[] s) would be good IMO).

Have I overlooked such function and if not - do you think it should be added
to phobos?
Nov 29 2005
parent reply Don Clugston <dac nospam.com.au> writes:
Dawid Ciężarkiewicz wrote:
 I can't find isInt(char[] s) or something like atoi throwing exception
 (name: toInt(char[] s) would be good IMO).
 
 Have I overlooked such function and if not - do you think it should be added
 to phobos?
Look in std.conv. You'll find: int toInt(char[] s) ... Any deviation from that grammar causes a ConvError exception to be thrown. Any overflows cause a ConvOverflowError to be thrown.
Nov 29 2005
parent Dawid =?UTF-8?B?Q2nEmcW8YXJraWV3aWN6?= <dawid.ciezarkiewicz gmail.com> writes:
Don Clugston wrote:
 Look in std.conv. You'll find:
 
 int toInt(char[] s)
Thanks. BTW. Maybe merging std.string and std.conf would be good idea. Every std.conv function works on string.
Nov 29 2005