Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / SQL-Server / SQL-Server-2008

Arabic currency conversion from numbers to letters

4.79/5 (9 votes)
9 Aug 2009CPOL1 min read 42.9K   3K  
Convert numbers to characters for Arabic applications.

example.jpg

Introduction

This project can be useful in many applications, like ERPs, financial applications, or any application used by Arabic speakers to display any number "as digits to characters", which is called - in some Arab countries - "tafqit".

Background

It's known that to write a number in Arabic characters, it's a little bit hard, as a number like 123 is written in English as "One Hundred twenty three", but in Arabic, it will be "One Hundred and three and twenty". So, for a big number - say 7 digits - it will be a little bit confusing to write it in this complicated form.

Using the code

The advantage of this code that it's pure SQL , so it will be easy to add it to any function, Stored Procedure, or View. Also, it can be used in both web and Windows applications. To use the code, first run the attached script in the desired database and then use the function called currency_conversion like this:

SQL
SELECT dbo.currency_conversion(12.10)

In the last example, the output will be:

currency
------------------------------------------
اثني عشر جنيها  و عشره قرشا 

(1 row(s) affected)

Points of interest

As I mentioned before, this function can be used in both Windows and web applications as it is just a SQL function. Also, as it's a scalar function, it can be used in both Views and Stored Procedures. You can also modify the script to fit your country's currency; just replace "Egyptian Pound" with your currency.

History

  • 08/08/2009 --> Initial version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)