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 210 views
1 answer 94 views
1 answer 90 views
90 views asked Aug 20, 2023 by avibootz
1 answer 124 views
124 views asked Aug 20, 2023 by avibootz
1 answer 92 views
1 answer 124 views
...