Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 635533
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T20:24:53+00:00 2026-05-13T20:24:53+00:00

I have a text like this You are advised to grant access to these

  • 0

I have a text like this

"You are advised to grant access to these settings only if you are sure you want to allow this program to run automatically when your computer starts. Otherwise it is better to deny access."

and i have 3 selections,

1. StartIndex = 8, Length = 16  // "advised to grant" 
2. StartIndex = 16, Length = 33  //"to grant access to these settings"
3. StartIndex = 35, Length = 26 // "these settings only if you"

i need to insert span tags and highlight selections, and intersections of words should be highlighted in different color,

result should be something like this

"You are <span style= 'background-color:#F9DA00'>advised </span> <span id = 'intersection' style= 'background-color:#F9DA00'>to grant </span> <span style= 'background-color:#F9DA00'>advised </span> <span style= 'background-color:#F9DA00'>access to </span>
<span id = 'intersection' style= 'background-color:#F9DA00'>these settings</span>
<span style= 'background-color:#F9DA00'>only if you </span>  sure you want to allow this program to run automatically when your computer starts. Otherwise it is better to deny access."

please help me to sort this out, i have been trying to figure-out a logic for a long time now and no luck so far

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T20:24:53+00:00Added an answer on May 13, 2026 at 8:24 pm

    finally manage to find a solution on my own, hope this help someone also in the future

     public enum SortDirection
        {
            Ascending, Descending
        }
    
        public enum SpanType
        {
            Intersection, InnerSpan, Undefined
        }
    
        class Program
        {
            static void Main(string[] args)
            {
                string MessageText = @"You are advised to grant access to these settings only if you are sure you want to allow this program to run automatically when your computer starts. Otherwise it is better to deny access.";
    
                List<Span> spanList = new List<Span>();
                List<Span> intersectionSpanList = new List<Span>();
    
                spanList.Add(new Span() { SpanID = "span1", Text = "advised to grant", ElementType = SpanType.Undefined, StartIndex = 8, Length = 16 });
                spanList.Add(new Span() { SpanID = "span2", Text = "to grant access to these settings", ElementType = SpanType.Undefined, StartIndex = 16, Length = 33 });
                spanList.Add(new Span() { SpanID = "span3", Text = "these settings only if you", ElementType = SpanType.Undefined, StartIndex = 35, Length = 26 });
    
                // simple interseciotn
                //spanList.Add(new Span() { SpanID = "span1", Text = "advised to grant", ElementType = TagType.Undefined, StartIndex = 8, Length = 16 });
                //spanList.Add(new Span() { SpanID = "span2", Text = "to grant access", ElementType = TagType.Undefined, StartIndex = 16, Length = 15 });
    
                // two different spans
                //spanList.Add(new Span() { SpanID = "span1", Text = "advised to grant", ElementType = TagType.Undefined, StartIndex = 8, Length = 16 });
                //spanList.Add(new Span() { SpanID = "span2", Text = "only if you are ", ElementType = TagType.Undefined, StartIndex = 50, Length = 16 });
    
                 // inner span
                 //spanList.Add(new Span() { SpanID = "span1", Text = "to grant access to these settings", ElementType = TagType.Undefined  , StartIndex = 16, Length = 33 });
                 //spanList.Add(new Span() { SpanID = "span2", Text = "access to these", ElementType = TagType.Undefined, StartIndex = 25, Length = 15 });
    
                // one inner span, and complex
                //spanList.Add(new Span() { SpanID = "span1", Text = "to grant access to these settings only ", ElementType = TagType.Undefined, StartIndex = 16, Length = 39 });
                //spanList.Add(new Span() { SpanID = "span2", Text = "access to these", ElementType = TagType.Undefined, StartIndex = 25, Length = 15 });
                //spanList.Add(new Span() { SpanID = "span3", Text = "only if you are sure", ElementType = TagType.Undefined, StartIndex = 50, Length = 20 });
    
                // one large span, and two intersections
                //spanList.Add(new Span() { SpanID = "span1", Text = "grant access to these settings only if you are sure you want to allow this program to run automatically when", ElementType = SpanType.Undefined, StartIndex = 19, Length = 108 });
                //spanList.Add(new Span() { SpanID = "span2", Text = "these settings only", ElementType = SpanType.Undefined, StartIndex = 35, Length = 19 });
                //spanList.Add(new Span() { SpanID = "span3", Text = "you want to allow this", ElementType = SpanType.Undefined, StartIndex = 71, Length = 22 });
    
                spanList.Sort("StartIndex asc"); 
    
                foreach (var item in spanList)
                    item.SplitSpans(ref spanList, ref intersectionSpanList, ref MessageText);
    
    
                // join intersections with span collection
                foreach (var item in intersectionSpanList)
                    spanList.Add(item);
    
                //remove duplicates
                spanList = RemoveDuplicateSpans(spanList);
    
                // sort spans by index ..
                spanList.Sort("StartIndex asc"); //desc
    
    
                foreach (var item in spanList)
                {
                    item.InsertStartSpan(ref spanList, ref MessageText);
                }
    
    
    
                foreach (var item in spanList)
                {
                    item.InsertEndSpan(ref spanList, ref MessageText);
                }
    
                //int count = spanList.Count -1;
    
                //while (count > 0)
                //{
                //    Span currentSpan = spanList[count];
                //    currentSpan.InsertEndSpan(ref spanList, ref MessageText);
                //    count--;
                //} 
    
    
    
            }
    
            internal static List<Span> RemoveDuplicateSpans(List<Span> list)
            {
                List<int> uniqueList = new List<int>();
    
                for (int i = 0; i < list.Count; i++)
                {
                    for (int j = 0; j < list.Count ; j++)
                    {
                        if (list[i].SpanID != list[j].SpanID)
                        { 
                            if (list[i].StartIndex == list[j].StartIndex && list[i].EndPossition == list[j].EndPossition && list[i].ElementType == SpanType.Undefined)
                            {
                                uniqueList.Add(i);
                            }
                        }
                    }
                }
    
                foreach (var item in uniqueList)
                {
                    list.RemoveAt(item);
                }
    
                return list;
    
            }
    
    
    
        }
    
        public static class Extensions
        {
    
            public static void Sort<T>(this List<T> list, string sortExpression)
            {
                string[] sortExpressions = sortExpression.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
    
                List<GenericComparer> comparers = new List<GenericComparer>();
    
                foreach (string sortExpress in sortExpressions)
                {
                    string sortProperty = sortExpress.Trim().Split(' ')[0].Trim();
                    string sortDirection = sortExpress.Trim().Split(' ')[1].Trim();
    
                    Type type = typeof(T);
                    PropertyInfo PropertyInfo = type.GetProperty(sortProperty);
                    if (PropertyInfo == null)
                    {
                        PropertyInfo[] props = type.GetProperties();
                        foreach (PropertyInfo info in props)
                        {
                            if (info.Name.ToString().ToLower() == sortProperty.ToLower())
                            {
                                PropertyInfo = info;
                                break;
                            }
                        }
                        if (PropertyInfo == null)
                        {
                            throw new Exception(String.Format("{0} is not a valid property of type: \"{1}\"", sortProperty, type.Name));
                        }
                    }
    
                    SortDirection SortDirection = SortDirection.Ascending;
                    if (sortDirection.ToLower() == "asc" || sortDirection.ToLower() == "ascending")
                    {
                        SortDirection = SortDirection.Ascending;
                    }
                    else if (sortDirection.ToLower() == "desc" || sortDirection.ToLower() == "descending")
                    {
                        SortDirection = SortDirection.Descending;
                    }
                    else
                    {
                        throw new Exception("Valid SortDirections are: asc, ascending, desc and descending");
                    }
    
                    comparers.Add(new GenericComparer { SortDirection = SortDirection, PropertyInfo = PropertyInfo, comparers = comparers });
                }
                list.Sort(comparers[0].Compare);
            }
        }
    
        public class GenericComparer
        {
            public List<GenericComparer> comparers { get; set; }
            int level = 0;
    
            public SortDirection SortDirection { get; set; }
            public PropertyInfo PropertyInfo { get; set; }
    
            public int Compare<T>(T t1, T t2)
            {
                int ret = 0;
    
                if (level >= comparers.Count)
                    return 0;
    
                object t1Value = comparers[level].PropertyInfo.GetValue(t1, null);
                object t2Value = comparers[level].PropertyInfo.GetValue(t2, null);
    
                if (t1 == null || t1Value == null)
                {
                    if (t2 == null || t2Value == null)
                    {
                        ret = 0;
                    }
                    else
                    {
                        ret = -1;
                    }
                }
                else
                {
                    if (t2 == null || t2Value == null)
                    {
                        ret = 1;
                    }
                    else
                    {
                        ret = ((IComparable)t1Value).CompareTo(((IComparable)t2Value));
                    }
                }
                if (ret == 0)
                {
                    level += 1;
                    ret = Compare(t1, t2);
                    level -= 1;
                }
                else
                {
                    if (comparers[level].SortDirection == SortDirection.Descending)
                    {
                        ret *= -1;
                    }
                }
                return ret;
            }
        }
    
        public class Span
        {
            string _Color = "#F9DA00";
    
            public const int SPAN_START_LENGTH = 40;
            public const int SPAN_END_LENGTH = 7;
            public const int SPAN_TOTAL_LENGTH = 47;
    
            public string Color
            {
                get
                {
                    return _Color;
                }
                set
                {
                    _Color = value;
                }
            }
    
            public string SpanID { get; set; }
    
            public int StartIndex { get; set; }
    
            public int HTMLTagEndPossition { get; set; }
    
            public Span ParentSpan { get; set; }
    
            public int Length { get; set; }
    
            public SpanType ElementType { get; set; }
    
            public string Text { get; set; }
    
            public int EndPossition
            {
                get
                {
                    return StartIndex + Length;
                }
            }
    
            public string GetStartSpanHtml()
            {
                return "<span style= 'background-color:" + Color + "'>" + this.Text;
            }
    
            public string GetEndSpanHtml()
            {
                return "</span>";
            }
    
            public bool IsProcessed { get; set; }
    
            internal void PostProcess(Span span, ref List<Span> spanList, ref string MessageText)
            {
                MessageText = MessageText.Remove(span.StartIndex, span.Length);
                MessageText = MessageText.Insert(span.StartIndex, span.GetStartSpanHtml());
    
                int offset = Span.SPAN_TOTAL_LENGTH;
    
                AdjustStartOffsetOfSpans(spanList, span, offset);
    
            }
    
            internal void SplitSpans(ref List<Span> spanList, ref List<Span> intersectionSpanList, ref string MessageText)
            {
                foreach (var item in spanList)
                {
                    if (this.SpanID == item.SpanID)
                        continue;
    
                    if (this.StartIndex < item.StartIndex && this.EndPossition > item.EndPossition)
                    { 
                        // inner
    
                        int innerSpanLength = this.EndPossition - item.StartIndex;
                        int innerSpanStartPos = this.StartIndex;
                        string innerSpanText = MessageText.Substring(item.StartIndex, item.Length);
    
                        Span innerSpan = new Span();
                        innerSpan.SpanID = "innerSpan" + Guid.NewGuid().ToString().Replace("-", "");
                        innerSpan.ElementType = SpanType.InnerSpan;
                        innerSpan.Text = innerSpanText;
                        innerSpan.Length = item.Length;
                        innerSpan.StartIndex = item.StartIndex;
                        innerSpan.ParentSpan = this;
                        intersectionSpanList.Add(innerSpan);
    
                    }
                    if (this.StartIndex < item.StartIndex && item.EndPossition > this.EndPossition && this.EndPossition > item.StartIndex)
                    { 
                        // end is overlapping
    
                        int intersectionLength = this.EndPossition - item.StartIndex;
                        int intersectionStartPos = item.StartIndex;
                        string intersectionText = MessageText.Substring(item.StartIndex, intersectionLength);
    
                        // Build intersection span
                        Span intersectonSpan = new Span();
                        intersectonSpan.SpanID = "intersectonSpan" + Guid.NewGuid().ToString().Replace("-", "");
                        intersectonSpan.Text = intersectionText;
                        intersectonSpan.Length = intersectionLength;
                        intersectonSpan.StartIndex = intersectionStartPos;
                        intersectonSpan.ElementType = SpanType.Intersection;
                        intersectionSpanList.Add(intersectonSpan);
    
                        // adjust my end pos.
                        this.Length = this.Length - intersectionLength;
                        this.Text = this.Text.Substring(0, this.Length);
    
                        item.StartIndex += intersectionLength;
                        item.Length -= intersectionLength;
                        item.Text = item.Text.Substring(intersectionLength, item.Length);
    
                    }
                    else if (this.StartIndex < item.StartIndex && item.EndPossition > this.EndPossition && this.EndPossition < item.StartIndex)
                    {
                        // two spans are not over lapping,
                    }
    
                    //if (this.EndPossition > item.StartIndex && this.EndPossition < item.EndPossition)
                    //{
    
                    //    if (item.StartIndex < this.StartIndex && item.EndPossition > this.EndPossition)
                    //    {
                    //        int innerSpanLength = this.EndPossition - this.StartIndex;
                    //        int innerSpanStartPos = this.StartIndex;
                    //        string innerSpanText = MessageText.Substring(this.StartIndex, this.Length);
    
    
                    //        // we are dealing with a inner span..
                    //        Span innerSpan = new Span();
                    //        innerSpan.SpanID = "innerSpan";
                    //        innerSpan.Text = innerSpanText;
                    //        innerSpan.Length = innerSpanLength;
                    //        innerSpan.StartIndex = innerSpanStartPos;
                    //        innerSpan.IsIntersection = true;
                    //        intersectionSpanList.Add(innerSpan);
    
                    //        MessageText = MessageText.Remove(innerSpanStartPos, innerSpanLength);
                    //        MessageText = MessageText.Insert(innerSpanStartPos, innerSpan.GetStartSpanHtml());
                    //        break;
                    //    }
    
                    //    int intersectionLength = this.EndPossition - item.StartIndex;
                    //    int intersectionStartPos = item.StartIndex;
                    //    string intersectionText = MessageText.Substring(item.StartIndex, intersectionLength);
    
    
                    //    // adjust the string.
                    //    if (!this.IsProcessed)
                    //    {
                    //        this.Text = this.Text.Substring(0, this.Length - intersectionLength);
                    //        this.Length = this.Length - intersectionLength;
                    //        MessageText = MessageText.Remove(this.StartIndex, this.Length);
                    //        MessageText = MessageText.Insert(this.StartIndex, this.GetStartSpanHtml());
    
                    //        // readjust intersection after insertion of the first span..
                    //        intersectionStartPos = Span.SPAN_START_LENGTH + intersectionStartPos;
                    //    }
    
    
    
                    //    // Build intersection span
                    //    Span intersectonSpan = new Span();
                    //    intersectonSpan.SpanID = "intersectonSpan";
                    //    intersectonSpan.Text = intersectionText;
                    //    intersectonSpan.Length = intersectionLength;
                    //    intersectonSpan.StartIndex = intersectionStartPos;
                    //    intersectonSpan.IsIntersection = true;
                    //    intersectionSpanList.Add(intersectonSpan);
    
    
                    //    MessageText = MessageText.Remove(intersectionStartPos, intersectionLength);
                    //    MessageText = MessageText.Insert(intersectionStartPos, intersectonSpan.GetStartSpanHtml());
    
                    //    if (!this.IsProcessed)
                    //        item.StartIndex = item.StartIndex + intersectionLength + Span.SPAN_START_LENGTH + Span.SPAN_START_LENGTH;
                    //    else
                    //        item.StartIndex = item.StartIndex + intersectionLength + Span.SPAN_START_LENGTH;
    
                    //    item.Length = item.Length - intersectionLength;
                    //    item.Text = item.Text.Substring(intersectionLength, item.Length);
    
                    //    //MessageText = MessageText.Remove(item.StartIndex, item.Length);
                    //    //MessageText = MessageText.Insert(item.StartIndex, item.GetOuterHtml());
    
                    //    int offset;
    
                    //    if (!this.IsProcessed)
                    //        offset = Span.SPAN_START_LENGTH + Span.SPAN_START_LENGTH;
                    //    else
                    //        offset = Span.SPAN_START_LENGTH;
    
                    //    AdjustOffsetSpans(spanList, item, offset);
    
                    //    this.IsProcessed = true;
    
                    //    break;
                    //}
                    //else if (item.StartIndex > this.StartIndex && item.EndPossition < this.EndPossition)
                    //{
                    //    // bigger span, inside there are children span(s)
    
                    //    MessageText = MessageText.Remove(this.StartIndex, this.Length);
                    //    MessageText = MessageText.Insert(this.StartIndex, this.GetStartSpanHtml());
    
                    //    // since this span is the big guy. 
    
                    //    AdjustOffsetForInnerSpansAndExternalSpans(spanList, this, this.StartIndex, this.EndPossition);
    
                    //    this.StartIndex += Span.SPAN_START_LENGTH;
                    //    this.IsProcessed = true;
                    //}
    
                }
            }
    
            //internal static void AdjustOffsetForInnerSpansAndExternalSpans(List<Span> spanList, Span parentSpan, int parentStartIndex, int parentEndIndex)
            //{
            //    bool adjustAfterThisSpan = false;
    
            //    foreach (var item in spanList)
            //    {
            //        if (item.SpanID == parentSpan.SpanID)
            //        {
            //            adjustAfterThisSpan = true;
            //            continue;
            //        }
    
            //        if (adjustAfterThisSpan)
            //        {
            //            // is this span in the middle of the parent ?
            //            if (item.StartIndex > parentSpan.StartIndex && item.EndPossition < parentSpan.EndPossition)
            //            {
            //                item.StartIndex += SPAN_START_LENGTH;
            //            }
            //            else
            //            {
            //                // after parent tag ?
            //                item.StartIndex += SPAN_START_LENGTH;
            //            }
            //        }
            //    }
            //}
    
            private void AdjustEndOffsetOfSpans(List<Span> spanList, Span span, int SPAN_END_LENGTH)
            {
                bool adjustAfterThisSpan = false;
    
                foreach (var item in spanList)
                {
                    if (item.SpanID == span.SpanID)
                    {
                        adjustAfterThisSpan = true;
                        continue;
                    }
    
                    if (adjustAfterThisSpan)
                    {
                        if (item.ParentSpan == null)
                        {
                            item.HTMLTagEndPossition += SPAN_END_LENGTH;
    
                        }
                        else if (span.ParentSpan != null && this.SpanID == item.ParentSpan.SpanID)
                        { }
                    }
                }
            }
    
            internal static void AdjustStartOffsetOfSpans(List<Span> spanList, Span fromSpan, int offset)
            {
                bool adjustAfterThisSpan = false;
    
                foreach (var item in spanList)
                {
                    if (item.SpanID == fromSpan.SpanID)
                    {
                        adjustAfterThisSpan = true;
                        continue;
                    }
    
                    if (adjustAfterThisSpan)
                        item.StartIndex += offset;
                }
            }
    
    
            internal void InsertStartSpan(ref List<Span> spanList, ref string MessageText)
            {
    
                MessageText = MessageText.Remove(this.StartIndex, this.Length);
                MessageText = MessageText.Insert(this.StartIndex, this.GetStartSpanHtml());
    
    
                AdjustStartOffsetOfSpans(spanList, this, SPAN_START_LENGTH);
    
                // Adjust end element tag
                switch (this.ElementType)
                {
                    case SpanType.Intersection:
                        {
                            this.HTMLTagEndPossition = this.Length + SPAN_START_LENGTH + this.StartIndex;
                            break;
                        }
                    case SpanType.InnerSpan:
                        {
                            this.HTMLTagEndPossition = this.Length + SPAN_START_LENGTH + this.StartIndex;
    
                            // increase the parent's tag offset conent length
                            this.ParentSpan.HTMLTagEndPossition += SPAN_START_LENGTH;
                            break;
                        }
                    case SpanType.Undefined:
                        {
                            this.HTMLTagEndPossition = this.Length + SPAN_START_LENGTH + this.StartIndex;
                            break;
                        }
                    default:
                        break;
                }
    
    
    
    
            }
    
            internal void InsertEndSpan(ref List<Span> spanList, ref string MessageText)
            {
                switch (this.ElementType)
                {
                    case SpanType.Intersection:
                        {
                            MessageText = MessageText.Insert(this.HTMLTagEndPossition, this.GetEndSpanHtml());
                            break;
                        }
                    case SpanType.InnerSpan:
                        {
                            MessageText = MessageText.Insert(this.HTMLTagEndPossition, this.GetEndSpanHtml());
                            break;
                        }
                    case SpanType.Undefined:
                        {
                            MessageText = MessageText.Insert(this.HTMLTagEndPossition, this.GetEndSpanHtml());
                            break;
                        }
                    default:
                        break;
                }
    
                AdjustEndOffsetOfSpans(spanList, this, SPAN_END_LENGTH);
    
    
            }
    
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have text like this div bla-bla end div i need to get only
I have text like this format term: 156^^^:^^59 datainput Or term: 156^^^:59 datainput or
I have a text like this: 'Rails on IIS7 http://is.gd/vWPn ' (it's a tweet
i have a text like this .... ======== 1079.tif Image Description : Vexcel-UCD-Level-3 ------------------
I have a text like this [name:roccos] [phone:123324324] [tags:abc def ghi] [id:value] How can
I have a text like this $text=The tower is 94.5m high, the view is
I have some text like this: এর জন্য বুদ্ধির (Reason) প্রয়োজন নেই, প্রয়োজন নিজের
I have text to localize like this <p>Please enter your user name and password.
i have a html text like this: <div id=content> <p>para1</p> <p>para2</p> <p>para3</p> <p class=break>para4</p>
if I have a text file like this : this is line one This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.