String to float
string-to-float.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 floatString = "555.99999999";
Label1.Text = "string of float value..................<br />";
Label1.Text += floatString;
//this line convert/parse/transform string to float.
double floatValue = float.Parse(floatString);
Label1.Text += "<br /><br />converted float from string.........<br />";
Label1.Text += floatValue;
Label1.Text += "<br /><br />converted float and add 10 .........<br />";
Label1.Text += floatValue + 10;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string to float</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string to float
</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 float"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to remove non alphanumeric characters from a string
- How to remove special characters from a string
- How to remove non numeric characters from a string
- How to create a string by repeating a character
- How to get number of characters from right side of a string
- How to remove white spaces from strating of a string
- How to truncate a string
- How to format a string as datetime yyyyMMdd
- How to convert a string to double
- How to parse a string into char