Visual Basic 6 - 将科学记数法转换为double

时间:2015-10-17 10:50:56

标签: text vb6 numbers double

很简单。

我希望能够在Visual Basic 6中将科学记数法转换为双精度。

例如:

not found in file2   
found in file2  
found in file2  
found in file2                                                                               
not found in file2

我试过了:

5.97427068015303E-10

不工作......

1 个答案:

答案 0 :(得分:1)

5.97427068015303E-10 已经为Double值。我不认为转换这个词意味着你的想法。转换功能肯定无法实现您的目标。

我怀疑你要表达的是你想要格式化这样微小的值,如简单的十进制表示法中的文本。如果是这样,你可能会尝试类似的东西:

Text1.Text = Format$(5.97427068015303E-10, "0.0########################")