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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T16:42:53+00:00 2026-06-14T16:42:53+00:00

This code searches a richtextbox and replaces the first field of the array into

  • 0

This code searches a richtextbox and replaces the first field of the array into the second one. It all works fine except for two of the fields.

iEmo = new string[,] {
  {@":\)",    Smile},
  {@":\(",    Sad},
  {@"8\)",    Cool},
  {@":\|",    Neutral},
  {@";\)",    Wink},
  {@">:\(",   Evil},    // Won't work for this one
  {@">:D",    Twisted}, // Or this one
  {@":\?",    Question,}
};

Here’s the part that converts the array into what I want:

public void SetSmiley(RichTextBox RichBox) {
  for (int i = 0; i < (iEmo.Length / 3); i++) {
    try {
      RichBox.Rtf = Regex.Replace(RichBox.Rtf, iEmo[i, 0], iEmo[i, 1], RegexOptions.IgnoreCase);
    }
    catch (Exception e){}
  }
}
  • 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-06-14T16:42:54+00:00Added an answer on June 14, 2026 at 4:42 pm

    Your regular expression looks fine, though I see a few things that are preventing it from working:

    for (int i = 0; i < (iEmo.Length / 3); i++)
    

    I have no idea why you’re dividing by 3. You should use the first dimension’s length here instead:

    for (int i = 0; i < iEmo.GetLength(0); i++)
    

    Additionally, because of the order in which your replacements occur, the normal frown ":(" will be replaced before the “evil” face ">:(". By the time the loop gets to the evil case, the string looks like ">Sad". Your should rearrange your replacements in descending complexity, something like this:

    iEmo = new string[,]
    {
        {@">:\(",   Evil},
        {@":\)",    Smile},
        {@":\(",    Sad},
        {@"8\)",    Cool},
        {@":\|",    Neutral},
        {@";\)",    Wink},
        {@">:D",    Twisted},
        {@":\?",    Question,}
    };
    

    And again, normal string replacement will work fine with the above changes.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code which searches a string array and returns the result if
This is the code of a button that when is clicked it searches for
This is the code i use to create a graph which searches for .csv
This code below allows me to find the word error in all my files
This code is the core of a much larger script that works great in
This code : http://jsfiddle.net/bYtTG/1/ Works as I want in FF, chrome and opera, but
So, I have this code that searches for a particular node in my XML
The below code searches, copies & pastes the found data into another worksheet. However,
I have this code that searches a list and returns the title if it
This is my code, in this code, I am reading an existing array through

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.