1 #Region "Microsoft.VisualBasic::1df4e3735eeeb7d27c92829b1bbef491, Microsoft.VisualBasic.Core\Extensions\StringHelpers\NumericFormatHelper.vb"
2
3     ' Author:
4     
5     '       asuka (amethyst.asuka@gcmodeller.org)
6     '       xie (genetics@smrucc.org)
7     '       xieguigang (xie.guigang@live.com)
8     
9     ' Copyright (c) 2018 GPL3 Licensed
10     
11     
12     ' GNU GENERAL PUBLIC LICENSE (GPL3)
13     
14     
15     ' This program is free software: you can redistribute it and/or modify
16     ' it under the terms of the GNU General Public License as published by
17     ' the Free Software Foundation, either version 3 of the License, or
18     ' (at your option) any later version.
19     
20     ' This program is distributed in the hope that it will be useful,
21     ' but WITHOUT ANY WARRANTY; without even the implied warranty of
22     ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23     ' GNU General Public License for more details.
24     
25     ' You should have received a copy of the GNU General Public License
26     ' along with this program. If not, see <http://www.gnu.org/licenses/>.
27
28
29
30     ' /********************************************************************************/
31
32     ' Summaries:
33
34     Module NumericFormatHelper
35     
36     '     Function: [Decimal], Float, SafeToString, SafeToStrings, (+9 OverloadsToHexString
37     
38     ' /********************************************************************************/
39
40 #End Region
41
42 Imports System.Runtime.CompilerServices
43 Imports Microsoft.VisualBasic.Language
44
45 ''' <summary>
46 ''' ###### ``C``货币
47 '''
48 ''' ```vbnet
49 ''' 2.5.ToString("C")
50 ''' ' ¥2.50
51 ''' ```
52 '''
53 ''' ###### ``D``十进制数
54 '''
55 ''' ```vbnet
56 ''' 25.ToString("D5")
57 ''' ' 00025
58 ''' ```
59 ''' 
60 ''' ###### ``E``科学型
61 '''
62 ''' ```vbnet
63 ''' 25000.ToString("E")
64 ''' ' 2.500000E+005
65 ''' ```
66 ''' 
67 ''' ###### ``F``固定点
68 '''
69 ''' ```vbnet
70 ''' 25.ToString("F2")
71 ''' ' 25.00
72 ''' ```
73 ''' 
74 ''' ###### ``G``常规
75 '''
76 ''' ```vbnet
77 ''' 2.5.ToString("G")
78 ''' ' 2.5
79 ''' ```
80 '''
81 ''' ###### ``N``数字
82 '''
83 ''' ```vbnet
84 ''' 2500000.ToString("N")
85 ''' ' 2,500,000.00
86 ''' ```
87 ''' 
88 ''' ###### ``X``十六进制
89 '''
90 ''' ```vbnet
91 ''' 255.ToString("X")
92 ''' ' FF
93 ''' ```
94 ''' </summary>
95 Public Module NumericFormatHelper
96
97     ''' <summary>
98     ''' ``D&lt;n>``
99     ''' </summary>
100     ''' <param name="n%"></param>
101     ''' <returns></returns>
102     Public Function [Decimal](n%) As String
103         Return "D" & n
104     End Function
105
106     ''' <summary>
107     ''' ``F&lt;n>``
108     ''' </summary>
109     ''' <param name="n%"></param>
110     ''' <returns></returns>
111     Public Function Float(n%) As String
112         Return "F" & n
113     End Function
114
115     ''' <summary>
116     ''' 
117     ''' </summary>
118     ''' <param name="x#"></param>
119     ''' <param name="NaN_imaginary$">Default using R language style default numeric value</param>
120     ''' <returns></returns>
121     <Extension>
122     Public Function SafeToString(x#, Optional NaN_imaginary$ = "NA"As String
123         If x.IsNaNImaginary Then
124             Return NaN_imaginary
125         Else
126             Return CStr(x)
127         End If
128     End Function
129
130     <Extension>
131     Public Function SafeToStrings(v As IEnumerable(Of Double), Optional NaN_imaginary$ = "NA"As String()
132         Return v _
133             .Select(Function(x) x.SafeToString(NaN_imaginary)) _
134             .ToArray
135     End Function
136
137 #Region "PrimitiveExtensions"
138
139     <Extension>
140     Public Function ToHexString(this As ByteAs String
141         Return this.ToString("x2")
142     End Function
143
144     <Extension>
145     Public Function ToHexString(this As ShortAs String
146         Dim value As UShort = CUShort(this)
147         Return ToHexString(value)
148     End Function
149
150     <Extension>
151     Public Function ToHexString(this As UShortAs String
152         Dim reverse As UShort = CUShort(((&HFF00 And this) >> 8) Or ((&HFF And this) << 8))
153         Return reverse.ToString("x4")
154     End Function
155
156     <Extension>
157     Public Function ToHexString(this As IntegerAs String
158         Dim value As UInteger = CUInt(this)
159         Return ToHexString(value)
160     End Function
161
162     <Extension>
163     Public Function ToHexString(this As UIntegerAs String
164         Dim reverse As UInteger = ((&HFF000000UI And this) >> 24) Or ((&HFF0000 And this) >> 8) Or ((&HFF00 And this) << 8) Or ((&HFF And this) << 24)
165         Return reverse.ToString("x8")
166     End Function
167
168     <Extension>
169     Public Function ToHexString(this As LongAs String
170         Dim value As ULong = CULng(this)
171         Return ToHexString(value)
172     End Function
173
174     <Extension>
175     Public Function ToHexString(this As ULongAs String
176         Dim reverse As ULong = (this And &HFFUL) << 56 Or (this And &HFF00UL) << 40 Or (this And &HFF0000UL) << 24 Or (this And &HFF000000UL) << 8 Or (this And &HFF00000000UL) >> 8 Or (this And &HFF0000000000UL) >> 24 Or (this And &HFF000000000000UL) >> 40 Or (this And &HFF00000000000000UL) >> 56
177         Return reverse.ToString("x16")
178     End Function
179
180     <Extension>
181     Public Function ToHexString(this As SingleAs String
182         Dim value As UInteger = Numeric.ToUInt32(this)
183         Return ToHexString(value)
184     End Function
185
186     <Extension>
187     Public Function ToHexString(this As DoubleAs String
188         Dim value As ULong = Numeric.ToUInt64(this)
189         Return ToHexString(value)
190     End Function
191 #End Region
192 End Module