Monday, 19 July 2021

How to Convert Color html hex color to KML color format using c#

 

List<string> result = new List<string>(System.Text.RegularExpressions.Regex.Split(HTMLHEXCOLORCODE.Replace("#",""), @"(?<=\G.{2})", System.Text.RegularExpressions.RegexOptions.Singleline));

               string clrsKML="FF" + result[2] + result[1] + result[0];

How to highlight selected text in notepad++

  –> To highlight a block of code in Notepad++, please do the following steps step-1  :- Select the required text. step-2  :- Right click...