Click here to Skip to main content
15,916,835 members
Everything / InputMask

InputMask

InputMask

Great Reads

by Dariush Tasdighi
How to change the html input to an integer (numeric) input (textbox) mask.

Latest Articles

by Dariush Tasdighi
How to change the html input to an integer (numeric) input (textbox) mask.

All Articles

Sort by Score

InputMask 

16 Feb 2013 by H.Brydon
These features of COBOL are built into the compiler, and are not generally available in other languages (with some exceptions: PL/I, ADA).You flagged "C" as your language of interest. These features are not built into the C language, but you might be able to find a library somewhere that...
19 Feb 2013 by lsatenstein
Adding commas using sprintf(), was no challenge. I have tested it with positive and negative numbers between one digit and 16 digits.I need to remove the debugging code and post it here in the next day or two.I have almost completed the formating using the Cobol Picture clause. The...
25 Apr 2015 by imad afzal
Hi Guys,I need your expertise to overcome a simple issue which will not be a problem for you, I'm in the middle of developing a web application which involves 7 to 8 steps registration here I'm looking after the efficiency of registration and my application so I'm thinking for a solution of...
14 Jul 2015 by Dariush Tasdighi
How to change the html input to an integer (numeric) input (textbox) mask.
15 Feb 2013 by lsatenstein
How to?Cobol has an input mask format similar to the following: Using integer 345picture "99999" yields 00345 picture "zzzz9" yields 345 or even "zzzVzz" yields 3.45 "9zzzVzz" invalid (9 to the left of z)."$zzVzz" floating dollar ...