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

51,875 answers

573 users

How to copy part of a string to a different string in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication1
{
    public class example
    {
        
        static void Main(string[] args)
        {
            string s = "C# is a very nice programming language", part = null;

            try
            {
                part = s.Substring(0, 8); // from first char 0 copy 8 chars
                Console.WriteLine(part);

                part = s.Substring(21, 29 - 21); // from char (0 to 21) 22 copy (29 - 21) 8 chars
                Console.WriteLine(part);

                part = s.Substring(21, 8);  // same as above
                Console.WriteLine(part);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
    }
}
/*
run:
     
C# is a
gramming
gramming
   
*/


answered Feb 5, 2015 by avibootz
edited Sep 9, 2015 by avibootz

Related questions

1 answer 249 views
1 answer 242 views
7 answers 571 views
1 answer 231 views
2 answers 266 views
1 answer 156 views
2 answers 142 views
...