How to add square brackets to underscores in a string with C#

2 Answers

0 votes
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = "c#_c__c++___________java";

            s = Regex.Replace(s, "[_]", "[$&]");

            Console.WriteLine(s);
        }
    }
}


/*
run:
    
c#[_]c[_][_]c++[_][_][_][_][_][_][_][_][_][_][_]java

*/

 



answered Jul 12, 2017 by avibootz
0 votes
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = "c#_c__c++___________java";

            s = Regex.Replace(s, "[_]+", "[$&]");

            Console.WriteLine(s);
        }
    }
}


/*
run:
    
c#[_]c[__]c++[___________]java

*/

 



answered Jul 12, 2017 by avibootz

Related questions

...