string remove char possibly a catastrophic wreck.

aronmatthew

Well-known member
Joined
Aug 5, 2019
Messages
51
Programming Experience
Beginner
C#:
string= string.Remove(string.IndexOf('.'),1);


1743787678551.png
 
Last edited:
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.
 
Last edited:
Please see the documentation:
 
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.

What about when using index of..it throws index exception in that case. There must be a way using just remove method. Unfortunately I'm too busy and this very frustrating problem is like getting pulled over by crooked cops.
 
What's wrong with IndexOf()? This seems to work just fine:


Code:
C#:
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);
    }
}

Output:
Code:
6
 
But I think what you really want is something like this:
C#:
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);
    }
}

 
Or you could just do:
C#:
temp1 = temp1.Replace(".", "");
 

Latest posts

Back
Top Bottom