Sponsored Content
Full Discussion: Integer Validation
Operating Systems Solaris Integer Validation Post 302914757 by DGPickett on Wednesday 27th of August 2014 03:40:45 PM
Old 08-27-2014
I suppose a few regex would do it even more neatly. If you parse zero, then it should be optional white space, optional sign, optional white space and then zero. If you parse not zero, does the parse need to run to the end of the string? Are parentheses OK for negative? What about commas, one radix symbol with, or without, nonzero digits after? There are so many different 'rules'!
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Validation

I'm kinda new in shell scripting. How do i validate an input from a user to conform to requirement. For example, echo "Enter First Name: " read FName echo "Enter Date of Employment (dd/mm/yyyy): " read DoE If the user enters data that is alphanumeric, it accepts it. I hope i've... (1 Reply)
Discussion started by: Allenzo
1 Replies

2. Shell Programming and Scripting

Numeric Validation

Hi, How to check whether an input to a shell script contain only numeric values. Is there any way to check against the following characters. & ( ) | \ " ' < > ` I've used the following way. echo $1 | grep "\{2\}$" if then (12 Replies)
Discussion started by: sumesh.abraham
12 Replies

3. Shell Programming and Scripting

Data Validation

I have a comma delimited file that I need to validate the data in one two columns in. Sample File: 1234,1234,1234,DESCRIPTION,1,1,2 1234,1234,1234,DESCRIPTION,1,1,2 1234,1234,1234,DESCRIPTION,1,1,2 1234,1234,1234,DESCRIPTION,1,1,2 I need to make sure that the second column's entries are... (3 Replies)
Discussion started by: hmnetonline
3 Replies

4. Shell Programming and Scripting

Validation help

Hi, I am new to Unix shell scripting and need help to add some validation to an existing script. I've made a script that takes two argument (input) but I want the script to display an error message when nothing (null) is entered. So far I managed to validate the fist argument but fail to... (2 Replies)
Discussion started by: zen10
2 Replies

5. Shell Programming and Scripting

Name validation

Hi All, I need to write a small piece of code to check the following. name should contain (A-Z), spaces, hyphens & apostrophes I need to generate regular expressions for the same. Please help me out as i am not familiar with regular expressions. (1 Reply)
Discussion started by: lifzgud
1 Replies

6. Shell Programming and Scripting

how to compare string integer with an integer?

hi, how to I do this? i="4.000" if ; then echo "smaller" fi how do I convert the "4.000" to 4? Thanks! (4 Replies)
Discussion started by: h0ujun
4 Replies

7. Shell Programming and Scripting

Files validation

Hi, I want a script to do the following: 1)I want to find all latest files with extension *.doc and write those files to a log file which i did. my script: find *.doc -mtime -1 -ls > test.log 2) suppose if there is no such latest files extracts script should write "Server... (8 Replies)
Discussion started by: sv0081493
8 Replies

8. Shell Programming and Scripting

Script for validation

Hi, I need a script which do below I have one process which runs 24*7 daily and I always has to monitor it now i want to have this automated such that if it stops at anytime we get a exception mail. For example i use ps -ef|grep 'etl' above command gives me the desired output. ... (7 Replies)
Discussion started by: sv0081493
7 Replies

9. Shell Programming and Scripting

Value validation

Hi All I am trying to validate a value using if condition requirement is need to check whether its a valid numeric value the input contains ( space, #N/A and negative and positive decimal values and Zeros) if it contains the space, I need to display the error message as space ... (15 Replies)
Discussion started by: tsurendra
15 Replies

10. UNIX for Beginners Questions & Answers

Validation using While and IF

I am learning Shell scripting on own. I am trying to do an assignment to get details from the user like username their individual marks ,DOB and send a report in mail with the Details calculated like total and average. validate_marks() { local Value=$1 if && then return 0 else... (1 Reply)
Discussion started by: JayashreeRobin
1 Replies
atof(3) 						     Library Functions Manual							   atof(3)

Name
       atof, atoi, atol, strtol, strtoul, strtod - convert ASCII to numbers

Syntax
       #include <math.h>

       double atof(nptr)
       char *nptr;

       atoi(nptr)
       char *nptr;

       long atol(nptr)
       char *nptr;

       long strtol(nptr, eptr, base)
       char *nptr, **eptr;
       int base;

       unsigned long strtoul(nptr, eptr, base)
       char *nptr, **eptr;
       int base;

       double strtod (nptr, eptr)
       char *nptr, **eptr;

       unsigned long strtoul(nptr, eptr, base)
       char *nptr, **eptr;
       int base;

Description
       These functions convert a string pointed to by nptr to floating, integer, and long integer representation respectively.	The first unrecog-
       nized character ends the string.

       The function recognizes (in order), an optional string of spaces, an optional sign, a string of digits optionally containing a radix  char-
       acter, an optional `e' or `E', and then an optionally signed integer.

       The and functions recognize (in order), an optional string of spaces, an optional sign, then a string of digits.

       The  function returns as a long integer, the value represented by the character string nstr.  The string is scanned up to the first charac-
       ter inconsistent with the base.	Leading white-space characters are ignored.

       If the value of eptr is not (char **) NULL, a pointer to the character terminating the scan is returned in **eptr.  If no  integer  can	be
       formed, **eptr is set to nstr , and zero is returned.

       If  base  is  positive  and  not greater than 36, it is used as the base for conversion.  After an optional leading sign, leading zeros are
       ignored, and 0x or 0X is ignored if base is 16.

       If base is zero, the string itself determines the base thus:  After an optional leading sign, a leading zero  indicates	octal  conversion,
       and a leading 0x or 0X hexadecimal conversion.  Otherwise, decimal conversion is used.

       Truncation from long to int can take place upon assignment, or by an explicit cast.

       The function is the same as except that returns, as an unsigned long integer, the value represented by the character string nstr.

       The  function  returns  as a double-precision floating point number, the value represented by the character string pointed to by nptr.  The
       string is scanned up to the first unrecognized character.

       The function recognizes an optional string of white-space characters, as defined by isspace in then an optional sign, then a string of dig-
       its optionally containing a radix character, then an optional e or E followed by an optional sign or space, followed by an integer.

       If  the value of eptr is not (char **)NULL, a pointer to the character terminating the scan is returned in the location pointed to by eptr.
       If no number can be formed, *eptr is set to nptr, and zero is returned.

       The radix character for and is that defined by the last successful call to category If category has not been called successfully, or if the
       radix character is not defined for a supported language, the radix character is defined as a period (.).

   International Environment
       LC_CTYPE       If this environment variable is set and valid, uses the international language database named in the definition to determine
		      character classification rules.

       LC_NUMERIC     If this environment is set and valid, and use the international language database named in the definition to determine radix
		      character rules.

       LANG	      If  this environment variable is set and valid and use the international language database named in the definition to deter-
		      mine collation and character classification rules.  If or is defined, their definition supercedes the definition of LANG.

Diagnostics
       The function returns HUGE if an overflow occurs, and  a 0 value if an underflow occurs, and sets errno to ERANGE.  HUGE is defined in

       The function returns INT_MAX or INT_MIN (according to the sign of the value) and sets errno to ERANGE, if the correct value is outside  the
       range of values that can be represented.

       The  function  returns  LONG_MAX or LONG_MIN (according to the sign of the value) and sets errno to ERANGE, if the correct value is outside
       the range of values that can be represented.

       The function returns LONG_MAX or LONG_MIN (according to the sign of the value) and sets errno to ERANGE, if the correct	value  is  outside
       the range of values that can be represented.

       The function returns ULONG_MAX and sets errno to ERANGE, if the correct value is outside the range of values that can be represented.

       The function returns HUGE (according to the sign of the value), and sets errno to ERANGE if the correct value would cause overflow.  A 0 is
       returned and errno is set to ERANGE if the correct value would cause underflow.

See Also
       ctype(3), setlocale(3), scanf(3s), environ(5int)

																	   atof(3)
All times are GMT -4. The time now is 06:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy