How to get the last space position in a string with C#

1 Answer

0 votes
using System;
  
class Program
{
    static void Main() {
        string s = "vb.net javascript php c c++ python c#";
        int last_space_pos = s.LastIndexOf(" ");

        Console.WriteLine(last_space_pos);
        
        Console.WriteLine(s[last_space_pos - 1]);
        Console.WriteLine(s[last_space_pos + 1]);
    }
}
  
  
  
/*
run:
  
34
n
c
  
*/

 



answered Sep 8, 2019 by avibootz

Related questions

2 answers 207 views
1 answer 88 views
1 answer 84 views
84 views asked Aug 20, 2023 by avibootz
1 answer 116 views
116 views asked Aug 20, 2023 by avibootz
1 answer 86 views
1 answer 117 views
...