String to decimal
we can convert or parse a string to decimal value by using Convert.ToDecimal(String) method and Decimal.Parse(String) method.
Convert.ToDecimal(String) method allow us to convert a specified string representation of a number to its equivalent decimal number. this method require a string type parameter named 'value' which contains a number to convert. the method return a decimal data type number that is equivalent to the number in string parameter. it return zero (0), if parameter value is null.
Decimal.Parse(String) method also convert a string representation of a number to its equivalent decimal number. the required parameter name is 's' which data type is string. the method return a decimal value.
the following .net c# example code demonstrate us how can we convert or parse a string instance to its equivalent decimal value in an asp.net application.
Convert.ToDecimal(String) method allow us to convert a specified string representation of a number to its equivalent decimal number. this method require a string type parameter named 'value' which contains a number to convert. the method return a decimal data type number that is equivalent to the number in string parameter. it return zero (0), if parameter value is null.
Decimal.Parse(String) method also convert a string representation of a number to its equivalent decimal number. the required parameter name is 's' which data type is string. the method return a decimal value.
the following .net c# example code demonstrate us how can we convert or parse a string instance to its equivalent decimal value in an asp.net application.
string-to-decimal.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this section create a string variable.
string decimalValueString = "125.99";
Label1.Text = "string of decimal value..................<br />";
Label1.Text += decimalValueString;
//this line convert/parse/transform string to decimal.
decimal decimalValue = Decimal.Parse(decimalValueString);
//convert string value to decimal with culture.
decimal decimalValue2 = Convert.ToDecimal(decimalValueString, System.Globalization.CultureInfo.InvariantCulture);
Label1.Text += "<br /><br />converted decimal from string.........<br />";
Label1.Text += decimalValue;
Label1.Text += "<br />converted decimal from string with culture.........<br />";
Label1.Text += decimalValue2;
Label1.Text += "<br />converted decimal and add 1 .........<br />";
Label1.Text += decimalValue + 1;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string to decimal</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string to decimal
</h2>
<hr width="550" align="left" color="Gainsboro" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string to decimal"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to create a csv from a string
- How to convert a delimited string to a dictionary
- How to convert a string to a double array
- How to convert a string to a float array
- How to write a string to a file
- How to convert a string to a guid
- How to convert a string to a generic list
- How to get bytes from a string
- How to convert a string to an int list
- How to convert a string to an IP address