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.

40,026 questions

51,982 answers

573 users

How to convert char in a string to uppercase by index with C#

1 Answer

0 votes
using System;
using System.Text;
 
class Program
{
    static string string_char_toupper(string s, int idx) { 
        int len = s.Length; 
        
        if (idx > len || idx < 0) return s;
  
        StringBuilder sb = new StringBuilder(s);
         
        sb[idx] = Char.ToUpper(sb[idx]);
         
        return sb.ToString();
    } 
    static void Main() {
        string s = "c# programming"; 
  
        s = string_char_toupper(s, 3);
 
        Console.Write(s);
    }
}
 
 
 
/*
run:
 
c# Programming
 
*/

 



answered Nov 16, 2019 by avibootz
edited Nov 16, 2019 by avibootz

Related questions

1 answer 203 views
1 answer 144 views
1 answer 135 views
1 answer 130 views
1 answer 160 views
3 answers 328 views
...