using System;
public class Program
{
public static void Main()
string str = "Here is my - <ul>";
string str2 = str.Replace("<ul>","<ul class=\"education\">");
Console.WriteLine("New String is: {0}",str2);
}