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 90 views
1 answer 104 views
1 answer 209 views
2 answers 191 views
1 answer 146 views
1 answer 123 views
1 answer 100 views
...