_Title "N2S$ testing for a scientific notation remover" 'b+ 2020-09-04 ' source of bug tracked down 2020-09-08
' looks pretty good except for one little bug fixed now
'It was because i was not dim'd as an integer!!!
Dim i
As Integer '<<<<<<<<<<<<<<<<<<<< Oh man!!!! this was the problem!!! Discovered 2020-09-08 If 0 Then ' < 0 to skip section, 1 to run section n = 1 ' has an odd bug jump -7 to -8 moves right 1 extra 0 fixed!!
n## = 1 ' but this OK too
'n## = 27.0123456789 'OK
'n## = (1 / 3) 'OK
Function N2S$
(EXP$
) 'remove scientific Notation to String (~40 LOC) 'SMcNeill Jan 7, 2020 ref: https://www.qb64.org/forum/index.php?topic=1555.msg112989#msg112989
'Last Function in code marked Best Answer (removed debug comments and blank lines added these 2 lines.)
ReDim t$
, sign$
, l$
, r$
, r&&
If check1
< 1 Or check1
> 1 Then N2S
= _Trim$(EXP$
):
Exit Function 'If no scientic notation is found, or if we find more than 1 type, it's not SN! Select Case l
'l now tells us where the SN starts at. l$
= Left$(t$
, l
- 1) 'The left of the SN r$
= Mid$(t$
, l
+ 1): r&&
= Val(r$
) 'The right of the SN, turned into a workable long If InStr(l$
, ".") Then 'Location of the decimal, if any r&& = r&& + 1
Case 0 'what the heck? We solved it already? 'l$ = l$
l$ = "0" + l$
l$ = "." + l$
l$ = l$ + "0"
l$ = l$
N2S$ = sign$ + l$