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,158 questions

40,712 answers

573 users

How to get the word before the last word from a string in C#

2 Answers

0 votes
using System;
  
class Program
{
    static void Main() {
        string s = "vb.net javascript php c c++ python c#";
        int pos1 = s.LastIndexOf(" ");
        int pos2 = s.LastIndexOf(" ", pos1 - 1);
   
        Console.WriteLine(pos1); // debug
        Console.WriteLine(pos2); // debug
         
        string word = pos2 > -1 ? s.Substring(pos2 + 1, pos1 - pos2) : s;
   
        Console.WriteLine(word);
    }
}
  
  
  
/*
run:
  
34
27
python 
  
*/

 





answered Sep 8, 2019 by avibootz
edited Sep 9, 2019 by avibootz
0 votes
using System;
  
class Program
{
    static void Main() {
        string s = "vb.net javascript php c c++ python c#";
        string[] array =  s.Split(' ');
   
        string word = array[array.Length - 2];
   
        Console.Write(word);
    }
}
  
  
  
/*
run:
  
python
  
*/

 





answered Sep 8, 2019 by avibootz
edited Sep 9, 2019 by avibootz

Related questions

2 answers 102 views
2 answers 110 views
110 views asked Sep 8, 2019 by avibootz
1 answer 74 views
3 answers 167 views
...