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 word from 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 pos = s.LastIndexOf(" ");
  
        string last_word = pos > -1 ? s.Substring(pos + 1) : s;
  
        Console.Write(last_word);
    }
}
 
 
 
/*
run:
 
c#
 
*/

 



answered Sep 8, 2019 by avibootz
edited Sep 8, 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 last_word = array[array.Length - 1];
 
        Console.Write(last_word);
    }
}



/*
run:

c#

*/

 



answered Sep 8, 2019 by avibootz

Related questions

2 answers 212 views
2 answers 108 views
2 answers 106 views
3 answers 269 views
2 answers 290 views
1 answer 82 views
...