473,786 Members | 2,583 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Code to Convert Currency into Words.

vivek kushwaha
7 New Member
Hi guys,
I need codes to convert Currency into Words. e.g.
120,500 into "One Lac. Five hundred only."

in asp.net with vb.net 1.1.


Please if anybody know about it. Reply me.

Vivek.
Mar 24 '08 #1
2 3999
dip_developer
648 Recognized Expert Contributor
Hi guys,
I need codes to convert Currency into Words. e.g.
120,500 into "One Lac. Five hundred only."

in asp.net with vb.net 1.1.


Please if anybody know about it. Reply me.

Vivek.

I have got a function from a website...call this function like this
Expand|Select|Wrap|Line Numbers
  1.  Dim rs as Integer 
  2. Dim rsWord as String=RupeesToWord(rs)
  3.  
............... ............see if it helps...



Expand|Select|Wrap|Line Numbers
  1. Function RupeesToWord(ByVal MyNumber)
  2. Dim Temp
  3. Dim Rupees, Paisa As String
  4. Dim DecimalPlace, iCount
  5. Dim Hundreds, Words As String
  6. Dim place(9) As String
  7. place(0) = " Thousand "
  8. place(2) = " Lakh "
  9. place(4) = " Crore "
  10. place(6) = " Arab "
  11. place(8) = " Kharab "
  12. On Error Resume Next
  13. ' Convert MyNumber to a string, trimming extra spaces.
  14. MyNumber = Trim(Str(MyNumber))
  15. ' Find decimal place.
  16. DecimalPlace = InStr(MyNumber, ".")
  17. ' If we find decimal place...
  18. If DecimalPlace > 0 Then
  19. ' Convert Paisa
  20. Temp = Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2)
  21. Paisa = " and " & ConvertTens(Temp) & " Paisa"
  22. ' Strip off paisa from remainder to convert.
  23. MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
  24. End If
  25. '===============================================================
  26. Dim TM As String ' If MyNumber between Rs.1 To 99 Only.
  27. TM = Right(MyNumber, 2)
  28. If Len(MyNumber) > 0 And Len(MyNumber) <= 2 Then
  29. If Len(TM) = 1 Then
  30. Words = ConvertDigit(TM)
  31. RupeesToWord = "Rupees " & Words & Paisa & " Only"
  32. Exit Function
  33. Else
  34. If Len(TM) = 2 Then
  35. Words = ConvertTens(TM)
  36. RupeesToWord = "Rupees " & Words & Paisa & " Only"
  37. Exit Function
  38. End If
  39. End If
  40. End If
  41. '===============================================================
  42.  
  43. ' Convert last 3 digits of MyNumber to ruppees in word.
  44. Hundreds = ConvertHundreds(Right(MyNumber, 3))
  45. ' Strip off last three digits
  46. MyNumber = Left(MyNumber, Len(MyNumber) - 3)
  47. iCount = 0
  48. Do While MyNumber <> ""
  49. 'Strip last two digits
  50. Temp = Right(MyNumber, 2)
  51. If Len(MyNumber) = 1 Then
  52.  
  53. If Trim(Words) = "Thousand" Or _
  54. Trim(Words) = "Lakh Thousand" Or _
  55. Trim(Words) = "Lakh" Or _
  56. Trim(Words) = "Crore" Or _
  57. Trim(Words) = "Crore Lakh Thousand" Or _
  58. Trim(Words) = "Arab Crore Lakh Thousand" Or _
  59. Trim(Words) = "Arab" Or _
  60. Trim(Words) = "Kharab Arab Crore Lakh Thousand" Or _
  61. Trim(Words) = "Kharab" Then
  62. Words = ConvertDigit(Temp) & place(iCount)
  63. MyNumber = Left(MyNumber, Len(MyNumber) - 1)
  64. Else
  65. Words = ConvertDigit(Temp) & place(iCount) & Words
  66. MyNumber = Left(MyNumber, Len(MyNumber) - 1)
  67. End If
  68. Else
  69. If Trim(Words) = "Thousand" Or _
  70. Trim(Words) = "Lakh Thousand" Or _
  71. Trim(Words) = "Lakh" Or _
  72. Trim(Words) = "Crore" Or _
  73. Trim(Words) = "Crore Lakh Thousand" Or _
  74. Trim(Words) = "Arab Crore Lakh Thousand" Or _
  75. Trim(Words) = "Arab" Then
  76.  
  77. Words = ConvertTens(Temp) & place(iCount)
  78.  
  79. MyNumber = Left(MyNumber, Len(MyNumber) - 2)
  80. Else
  81. Words = ConvertTens(Temp) & place(iCount) & Words
  82. MyNumber = Left(MyNumber, Len(MyNumber) - 2)
  83. End If
  84. End If
  85. iCount = iCount + 2
  86. Loop
  87. RupeesToWord = "Rupees " & Words & Hundreds & Paisa & " Only"
  88. End Function
  89. ' Conversion for hundreds
  90. '*****************************************
  91. Private Function ConvertHundreds(ByVal MyNumber)
  92. Dim Result As String
  93. ' Exit if there is nothing to convert.
  94. If Val(MyNumber) = 0 Then Exit Function
  95. ' Append leading zeros to number.
  96. MyNumber = Right("000" & MyNumber, 3)
  97. ' Do we have a hundreds place digit to convert?
  98. If Left(MyNumber, 1) <> "0" Then
  99. Result = ConvertDigit(Left(MyNumber, 1)) & " Hundreds "
  100. End If
  101. ' Do we have a tens place digit to convert?
  102. If Mid(MyNumber, 2, 1) <> "0" Then
  103. Result = Result & ConvertTens(Mid(MyNumber, 2))
  104. Else
  105. ' If not, then convert the ones place digit.
  106. Result = Result & ConvertDigit(Mid(MyNumber, 3))
  107. End If
  108. ConvertHundreds = Trim(Result)
  109. End Function
  110. ' Conversion for tens
  111. '*****************************************
  112. Private Function ConvertTens(ByVal MyTens)
  113. Dim Result As String
  114. ' Is value between 10 and 19?
  115. If Val(Left(MyTens, 1)) = 1 Then
  116. Select Case Val(MyTens)
  117. Case 10 : Result = "Ten"
  118. Case 11 : Result = "Eleven"
  119. Case 12 : Result = "Twelve"
  120. Case 13 : Result = "Thirteen"
  121. Case 14 : Result = "Fourteen"
  122. Case 15 : Result = "Fifteen"
  123. Case 16 : Result = "Sixteen"
  124. Case 17 : Result = "Seventeen"
  125. Case 18 : Result = "Eighteen"
  126. Case 19 : Result = "Nineteen"
  127. Case Else
  128. End Select
  129. Else
  130. ' .. otherwise it's between 20 and 99.
  131. Select Case Val(Left(MyTens, 1))
  132. Case 2 : Result = "Twenty "
  133. Case 3 : Result = "Thirty "
  134. Case 4 : Result = "Forty "
  135. Case 5 : Result = "Fifty "
  136. Case 6 : Result = "Sixty "
  137. Case 7 : Result = "Seventy "
  138. Case 8 : Result = "Eighty "
  139. Case 9 : Result = "Ninety "
  140. Case Else
  141. End Select
  142. ' Convert ones place digit.
  143. Result = Result & ConvertDigit(Right(MyTens, 1))
  144. End If
  145. ConvertTens = Result
  146. End Function
  147. Private Function ConvertDigit(ByVal MyDigit)
  148. Select Case Val(MyDigit)
  149. Case 1 : ConvertDigit = "One"
  150. Case 2 : ConvertDigit = "Two"
  151. Case 3 : ConvertDigit = "Three"
  152. Case 4 : ConvertDigit = "Four"
  153. Case 5 : ConvertDigit = "Five"
  154. Case 6 : ConvertDigit = "Six"
  155. Case 7 : ConvertDigit = "Seven"
  156. Case 8 : ConvertDigit = "Eight"
  157. Case 9 : ConvertDigit = "Nine"
  158. Case Else : ConvertDigit = ""
  159. End Select
  160. End Function 
Mar 24 '08 #2
vivek kushwaha
7 New Member
Thanx for the CODE.

I really appreciate it. It's working fine.
Mar 24 '08 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

3
3082
by: D | last post by:
Does anyone have a VBA code that converts numbers to Spelled out numbers? Example 100 to One Hundred. I need it for a check writing program and I don't feel like reinventing the wheel. Thanks
10
3362
by: jeff regoord | last post by:
A user inputs a float value. The scanf() function gets the value. However, I need to create an error handler with an if else statement saying invalid input if the input is not a number. Does anybody know how I could do this?
1
5659
by: Juan | last post by:
Best way to convert back a currency string into a number(int or long)? If I have, for example, $ 15.000,00 what is the best way to make it again an int or long? pls help!, Juan.
0
8431
by: R. John Reed | last post by:
Hi All, I'm am looking to convert a currency string (e.g. "$1,234.56" to a double value). It appears this will work: double val = Convert.ToDouble(Double.Parse­("$123,456.78901", System.Globalization.NumberSty­les.Currency));
2
10601
by: KB | last post by:
Hi guys, In my DataGrid I have a column that displays decimal values as currency ( I set the Data Formatting expression of that column to {0:C}). So the actual string displayed in the grid looks like $2,295.99. For each row I need to do some additional calculations based on this value, so I need to convert it back to decimal type. But I cannot find a way to get rid of the currency formatting and revert the value back to decimal. I tried...
7
2408
by: Andrea | last post by:
Hi there - I'm hoping someone can help me; I've been struggling with this for a few days! :-) I have a webpage that is comprised of many forms containing questions. As the user answers one of the questions, that form is hidden and the next is displayed. Also, as the user answers each question a "count" variable is updated based on their response. I would like the question to show up on the left side and the answer to show up in the...
1
5735
by: czi02 | last post by:
Hi there; Is there anybody out there knows how to design a function or data flow on how to convert a numerical currency valu (33,163.33) into words 33Million one hundred sixty three thousand point thirty three. Thanx
7
3770
by: tararreb | last post by:
#include<stdio.h> /*This line is standard input output, # is directive, include is keyword, and stdio.h is header file*/ #include<stdlib.h> /*This line is standard input output, # is directive, include is keyword, and stdlib.h is standard library defininition*/ #include<math.h> /*This line is standard input output, # is directive, include is keyword, and math.h is mathematical declarations*/ main (void)
1
1163
by: jemar19 | last post by:
import java.util.*; public class Kopi { static Scanner console=new Scanner(System.in); public static void main(Stringargs) { String f; double a,z,y,x,w;
0
9655
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9497
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10363
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9964
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6749
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5398
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.