-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCommonHelper.cs
184 lines (110 loc) · 4.08 KB
/
CommonHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml.Linq;
namespace WebApplication3
{
public class CommonHelper
{
public string FormatName(string firstName, string name)
{
return name + ", " + firstName;
}
public static string GetURI()
{
var urlBuilder = new UriBuilder(HttpContext.Current.Request.Url.AbsoluteUri) { Path = HttpContext.Current.Request.ApplicationPath, Query = null, Fragment = null };
return urlBuilder.Uri.ToString();
}
}
public class MathHelper
{
public string NumberToWords(double doubleNumber)
{
var beforeFloatingPoint = (int)Math.Floor(doubleNumber);
var beforeFloatingPointWord = $"{NumberToWords(beforeFloatingPoint)} ";
var afterFloatingPointWord =
$"{SmallNumberToWord((int)((doubleNumber - beforeFloatingPoint) * 100), "")} cents";
// return $"{beforeFloatingPointWord} and {afterFloatingPointWord}";
return $"{beforeFloatingPointWord} ";
}
private static string NumberToWords(int number)
{
if (number == 0)
return "zero";
if (number < 0)
return "minus " + NumberToWords(Math.Abs(number));
var words = "";
if (number / 1000000000 > 0)
{
words += NumberToWords(number / 1000000000) + " billion ";
number %= 1000000000;
}
if (number / 1000000 > 0)
{
words += NumberToWords(number / 1000000) + " million ";
number %= 1000000;
}
if (number / 10000000 > 0)
{
words += NumberToWords(number / 10000000) + " crore ";
number %= 10000000;
}
if (number / 100000 > 0)
{
words += NumberToWords(number / 100000) + " lakh ";
number %= 100000;
}
if (number / 1000 > 0)
{
words += NumberToWords(number / 1000) + " thousand ";
number %= 1000;
}
if (number / 100 > 0)
{
words += NumberToWords(number / 100) + " hundred ";
number %= 100;
}
words = SmallNumberToWord(number, words);
return words;
}
private static string SmallNumberToWord(int number, string words)
{
if (number <= 0) return words;
if (words != "")
words += " ";
var unitsMap = new[] { "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen" };
var tensMap = new[] { "zero", "ten", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety" };
if (number < 20)
words += unitsMap[number];
else
{
words += tensMap[number / 10];
if ((number % 10) > 0)
words += " " + unitsMap[number % 10];
}
return words;
}
public XElement SplitName(string title)
{
string[] nameList = title.Trim().Split(','); // Split data
XElement identity = new XElement("identity");
// Walk array of data
foreach (var name in nameList)
{
XElement elm = new XElement("Consignee", name);
identity.Add(elm);
}
//string htmlText = string.Empty;
//var nameList = title.Trim().Split(',');
//foreach (var name in nameList)
//{
// htmlText += "<p>";
// htmlText += name;
// htmlText += "</p>";
//}
//HtmlString html = new HtmlString(htmlText);
return identity;
}
}
}