aronmatthew
Well-known member
- Joined
- Aug 5, 2019
- Messages
- 51
- Programming Experience
- Beginner
C#:
string= string.Remove(string.IndexOf('.'),1);
Last edited:
string= string.Remove(string.IndexOf('.'),1);
The first parameter is supposed to be the start index, not the character to be removed. The compiler is getting the ASCII value of character '.' and passing that in.
The first parameter is supposed to be the start index, not the character to be removed. The compiler is getting the ASCII value of character '.' and passing that in.
IndexOf()
? This seems to work just fine:using System;
public class Program
{
public static void Main()
{
var temp1 = "6.";
var indexOfDot = temp1.IndexOf('.');
if (indexOfDot >= 0)
temp1 = temp1.Remove(indexOfDot);
Console.WriteLine(temp1);
}
}
6
using System;
public class Program
{
public static void Main()
{
var temp1 = "6.";
int value = 0;
if (double.TryParse(temp1, out var doubleValue))
{
value = (int)doubleValue;
}
else
{
throw new FormatException($"Could not parse {temp1}");
}
Console.WriteLine(value);
}
}
temp1 = temp1.Replace(".", "");
TrimEnd
.