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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,912 questions

51,844 answers

573 users

How to get the last two words 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#";
        string[] array =  s.Split(' ');
 
        string last_two_words = array[array.Length - 2] + " " + array[array.Length - 1];
 
        Console.Write(last_two_words);
    }
}



/*
run:

python c#

*/

 



answered Sep 8, 2019 by avibootz
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 last_two_words = pos2 > -1 ? s.Substring(pos2 + 1) : s;
  
        Console.WriteLine(last_two_words);
    }
}
 
 
 
/*
run:
 
34
27
python c#
 
*/

 



answered Sep 8, 2019 by avibootz

Related questions

1 answer 103 views
1 answer 119 views
1 answer 231 views
2 answers 217 views
1 answer 162 views
1 answer 140 views
1 answer 118 views
...