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 4100802
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:36:51+00:00 2026-05-20T20:36:51+00:00

In C#, Windows Form, how would I accomplish this: 07:55 Header Text: This is

  • 0

In C#, Windows Form, how would I accomplish this:


07:55 Header Text:  This is the data<br/>07:55 Header Text:  This is the data<br/>07:55 Header Text:  This is the data<br/>

So, as you can see, i have a return string, that can be rather long, but i want to be able to format the data to be something like this:


<b><font color="Red">07:55 Header Text</font></b>:  This is the data<br/><b><font color="Red">07:55 Header Text</font></b>:  This is the data<br/><b><font color="Red">07:55 Header Text</font></b>:  This is the data<br/>

As you can see, i essentially want to prepend <b><font color="Red"> to the front of the header text & time, and append </font></b> right before the : section.

So yeah lol i’m kinda lost.

I have messed around with .Replace() and Regex patterns, but not with much success. I dont really want to REPLACE text, just append/pre-pend at certain positions.

Is there an easy way to do this?

Note: the [] tags are actually <> tags, but i can’t use them here lol

  • 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-20T20:36:52+00:00Added an answer on May 20, 2026 at 8:36 pm

    Just because you’re using RegEx doesn’t mean you have to replace text.

    The following regular expression:

    (\d+:\d+.*?:)(\s.*?\[br/\])
    

    Has two ‘capturing groups.’ You can then replace the entire text string with the following:

    [b][font color="Red"]\1[/font][/b]\2
    

    Which should result in the following output:

    [b][font color="Red"]07:55 Header Text:[/font][/b] This is the data[br/]
    [b][font color="Red"]07:55 Header Text:[/font][/b] This is the data[br/]
    [b][font color="Red"]07:55 Header Text:[/font][/b] This is the data[br/]
    

    Edit: Here’s some C# code which demonstrates the above:

    var fixMe = @"07:55 Header Text: This is the data[br/]07:55 Header Text: This is the data[br/]07:55 Header Text: This is the data[br/]";
    var regex = new Regex(@"(\d+:\d+.*?:)(\s.*?\[br/\])");
    var matches = regex.Matches(fixMe);
    
    var prepend = @"[b][font color=""Red""]";
    var append = @"[/font][/b]";
    
    string outputString = "";
    foreach (Match match in matches)
    {
        outputString += prepend + match.Groups[1] + append + match.Groups[2] + Environment.NewLine;
    }
    
    Console.Out.WriteLine(outputString);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Windows Form project that I would like to migrate toward a
I have a Windows Form that takes quite a bit of time to load
I have a windows form application that uses a Shared class to house all
In a Windows Form window, multiple events can trigger an asynchronous method. This method
I have a simple .NET 2.0 windows form app that runs off of a
I'm using an OpenFileDialog in my Windows Form. I would like this dialog to
How can I get the size a form would have in Maximized windowstate without
If i were developing a screensaver using a windows.form in C# how would i
I have a Windows Form app written in C#. Its job is to send
We are creating a Windows Form application (C# or VB.NET) that needs to reference

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.