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

  • Home
  • SEARCH
  • 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 6158075
In Process

The Archive Base Latest Questions

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

We store ContentDelimiter config (which we use to delimite the content) in Database as

  • 0

We store ContentDelimiter config (which we use to delimite the content) in Database as string (which could be “tab”, i.e. \t , or new line \r\n)

Later on we would like to use this config, how would I go about converting \t (which is string, not chat) to tab char ?

Example:

string delimiterConfig =  config.GetDelimiter();
char[] delimiter = ConvertConfig(delimiterConfig);

How would ConvertConfig will look like so that it will parse all escaped strings back into chars so that “\t” string will become \tchar.

Any elegant solutions without using case statements and replace ?

  • 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-23T20:53:40+00:00Added an answer on May 23, 2026 at 8:53 pm

    Here’s an elegant solution with a switch statement, the Regex.Replace Method and a custom MatchEvaluator:

    var input = @"This is indented:\r\n\tHello World";
    
    var output = Regex.Replace(input, @"\\[rnt]", m =>
    {
        switch (m.Value)
        {
        case @"\r": return "\r";
        case @"\n": return "\n";
        case @"\t": return "\t";
        default: return m.Value;
        }
    });
    
    Console.WriteLine(output);
    

    Output:

    This is indented:
            Hello World
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I store rdl's remotely in a sql server database in binary format. I would
I store images in binary format in SQLite database (client side) and use QtWebKit
I store my entities in the eXist XML database and I use a file
I store my connection-string in XML file. Then i use it in powershell script.
I store the content of a website in a string $html . I want
I store labels/tags in my database (mockup below): labels: text:string //name of the label/tag
I store some time values in sqlite in %H:%M string format (for example 15:43),
I store various user details in my MySQL database. Originally it was set up
I store serialized data in the registry. I want to use a foreach loop
I store file’s attributes (size, update time…) in database. So the problem is how

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.