GOSUB validate_string_number
PRINT "Validated: "; stringmathb$
IF INSTR(stringmathb$
, "$") = 0 THEN PRINT "3) Convert to Dollars and Cents": x$
= x$
+ "3" PRINT "5) Convert to Numeric": x$
= x$
+ "5" PRINT "6) Convert to S.N.": x$
= x$
+ "6" PRINT "7) New number": x$
= x$
+ "7" GOSUB validate_string_number
GOSUB scientific_to_numeric
GOSUB numeric_to_scientific
x$ = ""
validate_string_number:
vsn_negcnt& = 0: vsn_poscnt& = 0: vsn_depresent& = 0: decimalcnt& = 0: vsn_numberpresent& = 0: vsn_zerospresent& = 0
IF LEFT$(stringmathb$
, 1) = "-" THEN stringmathb$
= MID$(stringmathb$
, 2): sm_sign$
= "-" ELSE sm_sign$
= "" validatenum$
= MID$(UCASE$(stringmathb$
), sm_i&
, 1) IF vsn_depresent&
THEN vsn_poscnt&
= vsn_poscnt&
+ 1 ELSE stringmathb$
= "invalid number":
RETURN IF vsn_depresent&
THEN vsn_negcnt&
= vsn_negcnt&
+ 1 ELSE stringmathb$
= "invalid number":
RETURN vsn_numberpresent& = -1
vsn_depresent& = vsn_depresent& + 1
IF decimalcnt&
= 0 AND sm_i&
<> 2 OR vsn_depresent&
> 1 OR vsn_numberpresent&
= 0 OR vsn_negcnt&
> 1 OR vsn_poscnt&
> 1 OR vsn_negcnt&
= 1 AND vsn_poscnt&
>= 1 THEN vsn_numberpresent&
= 0:
EXIT FOR vsn_numberpresent& = 0
MID$(stringmathb$
, sm_i&
, 1) = "e" ' Standardize decimalcnt& = decimalcnt& + 1
IF decimalcnt&
= 0 THEN stringmathb$
= MID$(stringmathb$
, 1, 1) + "." + MID$(stringmathb$
, 2) ' Standardize "." IF vsn_numberpresent&
= 0 OR vsn_negcnt&
= 1 AND vsn_poscnt&
= 1 OR decimalcnt&
> 1 OR INSTR(stringmathb$
, ".") <> 2 THEN stringmathb$
= "invalid number":
RETURN vsn_depresent&
= INSTR(stringmathb$
, "e") sm_x$
= MID$(stringmathb$
, vsn_depresent&
+ 1, 1) ' Standardize exponent "+" these two lines. IF sm_x$
<> "+" AND sm_x$
<> "-" THEN stringmathb$
= MID$(stringmathb$
, 1, vsn_depresent&
) + "+" + MID$(stringmathb$
, vsn_depresent&
+ 1) IF MID$(stringmathb$
, vsn_depresent&
+ 2, 1) = "0" THEN IF MID$(stringmathb$
, vsn_depresent&
+ 3, 1) <> "" THEN stringmathb$
= "invalid number":
RETURN ' No leading zeros allowed in exponent notation. jjed&
= INSTR(stringmathb$
, "e") ' Get position of notation. valexpside$
= MID$(stringmathb$
, jjed&
) ' These two lines break up into number and notation stringmathb$
= MID$(stringmathb$
, 1, jjed&
- 1) ' stringmathb$ is +- single digit whole number, decimal point and decimal number. valexpside$ is notation, sign and exponent. DO UNTIL RIGHT$(stringmathb$
, 1) <> "0" ' Remove any trailing zeros for number. Example 1.0d3 or 1.0000d3, etc. stringmathb$
= MID$(stringmathb$
, 1, LEN(stringmathb$
) - 1) stringmathb$ = "0.e+0" ' Handles all types of zero entries.
stringmathb$
= "invalid number":
RETURN stringmathb$ = sm_sign$ + stringmathb$ + valexpside$
validatenum$
= MID$(stringmathb$
, sm_i&
, 1) decimalcnt& = decimalcnt& + 1
vsn_zerospresent& = -1
vsn_numberpresent& = -1
stringmathb$
= "invalid number":
RETURN IF decimalcnt&
> 1 OR vsn_negcnt&
> 1 OR vsn_poscnt&
> 1 OR vsn_negcnt&
>= 1 AND vsn_poscnt&
>= 1 THEN stringmathb$
= "invalid number":
RETURN IF RIGHT$(stringmathb$
, 1) = "." THEN stringmathb$
= MID$(stringmathb$
, 1, LEN(stringmathb$
) - 1) DO UNTIL LEFT$(stringmathb$
, 1) <> "0" ' Strip off any leading zeros. stringmathb$
= MID$(stringmathb$
, 2) stringmathb$ = sm_sign$ + stringmathb$
DO UNTIL RIGHT$(stringmathb$
, 1) <> "0" ' Strip off any trailing zeros in a decimal. stringmathb$
= MID$(stringmathb$
, 1, LEN(stringmathb$
) - 1) IF RIGHT$(stringmathb$
, 1) = "." THEN stringmathb$
= MID$(stringmathb$
, 1, LEN(stringmathb$
) - 1) IF vsn_numberpresent&
= 0 THEN stringmathb$ = "0"
stringmathb$ = "invalid number"
' Add in commas.
comma_placement:
sm_j% = sm_j% + 1
IF sm_j%
= 4 THEN stringmathb$
= "," + stringmathb$: sm_j%
= 1 stringmathb$
= MID$(temp_stringmathb1$
, sm_i&
, 1) + stringmathb$
stringmathb$ = sm_sign$ + stringmathb$ + temp_stringmathb2$
temp_stringmathb1$ = "": temp_stringmathb2$ = "": sm_i& = 0: sm_j% = 0
' Validate comma entry.
comma_validation:
stringmathb$ = "invalid number" ' Decimal part has comma or entry is all commas.
sm_j% = sm_j% + 1
IF MID$(temp_stringmathb1$
, sm_i&
, 1) <> "," THEN stringmathb$
= "invalid number":
EXIT FOR sm_j% = 0
IF stringmathb$
<> "invalid number" THEN stringmathb$ = sm_sign$ + temp_stringmathb1$ + temp_stringmathb2$
temp_stringmathb1$ = "": temp_stringmathb2$ = "": sm_i& = 0: sm_j% = 0: sm_sign$ = "": sm_dollar$ = ""
comma_removal:
stringmathb$
= MID$(stringmathb$
, 1, INSTR(stringmathb$
, ",") - 1) + MID$(stringmathb$
, INSTR(stringmathb$
, ",") + 1)
comma_prep:
IF LEFT$(stringmathb$
, 1) = "-" THEN stringmathb$
= MID$(stringmathb$
, 2): sm_sign$
= "-" temp_stringmathb1$ = stringmathb$: stringmathb$ = ""
temp_stringmathb2$
= MID$(temp_stringmathb1$
, INSTR(temp_stringmathb1$
, ".")) ' Decimal part temp_stringmathb1$
= MID$(temp_stringmathb1$
, 1, INSTR(temp_stringmathb1$
, ".") - 1) ' Non-decimal partIF LEFT$(temp_stringmathb1$
, 1) = "$" THEN temp_stringmathb1$
= MID$(temp_stringmathb1$
, 2): sm_dollar$
= "$"
currency_validate:
sm_dollar$ = "$"
currency_convert:
IF INSTR(stringmathb$
, ".") = 0 THEN stringmathb$
= stringmathb$
+ ".00" IF RIGHT$(stringmathb$
, 1) = "." THEN stringmathb$
= stringmathb$
+ "00" IF MID$(stringmathb$
, LEN(stringmathb$
) - 2, 1) <> "." THEN stringmathb$
= stringmathb$
+ "0" IF MID$(stringmathb$
, LEN(stringmathb$
) - 2, 1) <> "." THEN stringmathb$
= "invalid number":
RETURN stringmathb$ = sm_sign$ + "$" + stringmathb$
numeric_to_scientific:
IF LEFT$(stringmathb$
, 1) = "-" THEN stringmathb$
= MID$(stringmathb$
, 2): n2sign$
= "-" IF INSTR(stringmathb$
, ".") = 0 THEN exponentvalue&&
= LEN(stringmathb$
) - 1 ELSE exponentvalue&&
= INSTR(stringmathb$
, ".") - 2 ' Exponent is one less than number of digits for whole number an two less than the placement of the decimal point for a fraction. stringmathb$
= MID$(stringmathb$
, 1, INSTR(stringmathb$
, ".") - 1) + MID$(stringmathb$
, INSTR(stringmathb$
, ".") + 1) DO UNTIL LEFT$(stringmathb$
, 1) <> "0" ' Remove leading zeros to consider rounding. stringmathb$
= MID$(stringmathb$
, 2) exponentvalue&& = exponentvalue&& - 1
esign$ = "-"
esign$ = "+"
stringmathb$
= MID$(stringmathb$
, 1, LEN(stringmathb$
) - 1)IF stringmathb$
= "" THEN stringmathb$
= "0": esign$
= "+": exponentvalue&&
= 0 stringmathb$
= LEFT$(stringmathb$
, 1) + "." + MID$(stringmathb$
, 2)IF stringmathb$
= "0." THEN n2sign$
= "": esign$
= "+" stringmathb$
= stringmathb$
+ "e" + esign$
+ LTRIM$(STR$(ABS(exponentvalue&&
))) ' S.N formed here.IF stringmathb$
<> "overflow" THEN stringmathb$ = n2sign$ + stringmathb$
n2sign$ = "": esign$ = "": exponentvalue&& = 0
scientific_to_numeric:
IF MID$(stringmathb$
, INSTR(stringmathb$
, "e") + 2) = "0" THEN ' The numeric value is the number without the zero exponent. stringmathb$
= MID$(stringmathb$
, 1, INSTR(stringmathb$
, "e") - 1) IF RIGHT$(stringmathb$
, 1) = "." THEN stringmathb$
= MID$(stringmathb$
, 1, LEN(stringmathb$
) - 1) IF LEFT$(stringmathb$
, 1) = "-" THEN stn_sign$
= "-": stringmathb$
= MID$(stringmathb$
, 2) stringmathb$
= MID$(stringmathb$
, 1, INSTR(stringmathb$
, ".") - 1) + MID$(stringmathb$
, INSTR(stringmathb$
, ".") + 1) ' Remove decimal point. stn_i&
= INSTR(stringmathb$
, "e") - 1 ' Length of the numric part. stringmathb$
= "." + STRING$(VAL(MID$(stringmathb$
, stn_i&
+ 3)) - 1, "0") + MID$(stringmathb$
, 1, stn_i&
) ' Decimal point followed by exponent value in zeros added in front of numeric part. IF stn_i&
- 1 > VAL(MID$(stringmathb$
, stn_i&
+ 3)) THEN stn_point$
= "." ' - 1 for decimal place. Ex 2.034d+2 is 2034 here where 3 places to the right . could be moved before . disappears. > so no trailing decimal results. stringmathb$
= MID$(MID$(stringmathb$
, 1, stn_i&
), 1, VAL(MID$(stringmathb$
, stn_i&
+ 3)) + 1) + stn_point$
+ MID$(MID$(stringmathb$
, 1, stn_i&
), VAL(MID$(stringmathb$
, stn_i&
+ 3)) + 2, stn_i&
- VAL(MID$(stringmathb$
, stn_i&
+ 3)) - 1) + STRING$(VAL(MID$(stringmathb$
, stn_i&
+ 2)) - (stn_i&
- 1), "0")IF stringmathb$
= "0" THEN stn_sign$
= "" stringmathb$ = stn_sign$ + stringmathb$
stn_sign$ = "": stn_point$ = ""