Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,054 questions

40,776 answers

573 users

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

Learn & Practice SQL


97 views
asked Sep 8, 2019 by avibootz
retagged Sep 9, 2019 by avibootz

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 147 views
1 answer 43 views
1 answer 32 views
32 views asked Aug 20, 2023 by avibootz
1 answer 33 views
33 views asked Aug 20, 2023 by avibootz
1 answer 30 views
...