i want display a given number into Rupees Format

Like
Given number is : 156735

my Expected output is 1,56,735.

how to display?

Answers were Sorted based on User's Feedback



i want display a given number into Rupees Format Like Given number is : 156735 my Expected ou..

Answer / amarendra kala

For oracle.............

select to_char(156735,'999,99,999.') from dual


output:- 1,56,735.

Is This Answer Correct ?    6 Yes 1 No

i want display a given number into Rupees Format Like Given number is : 156735 my Expected ou..

Answer / ambrish

Dim Number As Double = 156735.0
Dim info As System.Globalization.CultureInfo =
System.Globalization.CultureInfo.GetCultureInfo("hi-IN")
Dim str As String = Number.ToString("C2", info)
TextBox1.Text = str

Is This Answer Correct ?    5 Yes 0 No

i want display a given number into Rupees Format Like Given number is : 156735 my Expected ou..

Answer / esarmca65

For win forms .....


private void button1_Click(object sender, EventArgs e)
{
string s = textBox1.Text;
textBox2.Text = string.Format("{0:c}",
Convert.ToInt32(s));
}

Input: 65536

Out Put:$65,536.00

Is This Answer Correct ?    5 Yes 3 No

i want display a given number into Rupees Format Like Given number is : 156735 my Expected ou..

Answer / varun

try the below statment. It uses the indian english culture
to represent the numbers in lakhs instead of millions
format..

Console.WriteLine(i.ToString("#,#",
System.Globalization.CultureInfo.GetCultureInfo("en-IN")));

Is This Answer Correct ?    2 Yes 2 No

i want display a given number into Rupees Format Like Given number is : 156735 my Expected ou..

Answer / srikanth

You Can Use Just
String.Format("{0:C}",156735);

Is This Answer Correct ?    1 Yes 6 No

i want display a given number into Rupees Format Like Given number is : 156735 my Expected ou..

Answer / jayashree k r

1,56,735 is not a valid number format. you can display as
156,735.
int i = 156735
i.ToString("#,#",
System.Globalization.CultureInfo.InvariantCulture)
will give you the expected result.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More C Sharp Interview Questions

What does using system mean in c#?

0 Answers  


What is Interface Polymorphism?with E.g

1 Answers  


What is boxing and unboxing in c#?

0 Answers  


How can you write a class to restrict that only one object of this class can be created (Singleton class)?

0 Answers  


What is private and shared assembly?

0 Answers  


What is class sortedlist underneath?

0 Answers  


Can dictionary have duplicate keys c#?

0 Answers  


t name of controls, which are displayed same in all browers?

1 Answers   TCS,


How is the syntax written to inherit from a class in C#?Give an example ?

0 Answers   Siebel,


hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }

2 Answers  


Is enum a class c#?

0 Answers  


i have a table named login in mysql database containing (empid,fname,lname,mobno,emailid,usrname,usrpwd) i have 2 textboxes in which i enter my username and pwd..so based on what is entered in those textboxes it should retreive all other details of dat username in the remaining 6 textboxes..i want the code for this...

1 Answers   Royal Enfield,


Categories