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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:28:37+00:00 2026-06-08T18:28:37+00:00

For example, if I want to remove whitespace and trailing commas from a string,

  • 0

For example, if I want to remove whitespace and trailing commas from a string, I can do this:

String x = "abc,\n";
x.Trim().Trim(new char[] { ',' });

which outputs abc correctly. I could easily wrap this in an extension method, but I’m wondering if there is an in-built way of doing this with a single call to Trim() that I’m missing. I’m used to Python, where I could do this:

import string
x = "abc,\n"

x.strip(string.whitespace + ",")

The documentation states that all Unicode whitespace characters, with a few exceptions, are stripped (see Notes to Callers section), but I’m wondering if there is a way to do this without manually defining a character array in an extension method.

Is there an in-built way to do this? The number of non-whitespace characters I want to strip may vary and won’t necessarily include commas, and I want to remove all whitespace, not just \n.

  • 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-08T18:28:38+00:00Added an answer on June 8, 2026 at 6:28 pm

    Using regex makes this simple:

    text = Regex.Replace(text, @"^[\s,]+|[\s,]+$", "");
    

    This will match Unicode whitespace characters as well.

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

Sidebar

Related Questions

I want to remove any numbers from the end of a string, for example:
how to remove a string starting from '@'? for example admin@admin.com, i want to
I have following object: {"2":{"cid":"2","uid":"2"},"1":{"cid":"1","uid":"3"}} In this example I want to remove "1":{"cid":"1","uid":"3"} from
I want to remove n characters from each line using PERL. For example, I
I want to remove the string code=hads1328fas& on my URL, so that BEFORE http://example.com/main/index.php?code=hads1328fas&store=food#home
I want to remove duplicate lines from a file, without sorting the file. Example
I want to draw a widget (in this example, a canvas) and then remove
I have a string and I want to remove all non-alphanumeric symbols from and
I want to remove comma at end if string ends with comma For example
I have this HTML string which often has a lot of whitespaces Example: <p>All

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.