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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:45:53+00:00 2026-06-09T03:45:53+00:00

I have some strings that are like FFS\D46_24\43_2 I want to return the text

  • 0

I have some strings that are like FFS\D46_24\43_2 I want to return the text between the first backslash and last underscore. In case of above example, I want to get D46_24\43

I tried the code below but it throws argument out of range exepction:

    public string GetTestName(string text)
    {
        return text.Remove(
            text.IndexOf("\\", StringComparison.InvariantCultureIgnoreCase)
            ,
            text.LastIndexOf("_", StringComparison.InvariantCultureIgnoreCase)
            );
    }
  • 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-09T03:45:55+00:00Added an answer on June 9, 2026 at 3:45 am

    The second parameter is a count, not an ending index. Additionally, the correct method to isolate part of a string is Substring and not Remove. So you have to write it as

    var start = text.IndexOf("\\", StringComparison.InvariantCultureIgnoreCase);
    var end = text.LastIndexOf("_", StringComparison.InvariantCultureIgnoreCase);
    
    // no error checking: assumes both indexes are positive
    return text.Substring(start + 1, end - start - 1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some LINQ code that generates a list of strings, like this: var
I have a text file that contains some strings separated by ,. Strings are
Just some example code here, but I have lists of strings that I want
I do have some strings that contains programming code, like XHTML (asp.net markup), C#,
I have some strings, entered by users, that may look like this: ++7 7++
I have some strings that contain line breaks, and I would like to keep
I have some strings like Café that contains special characters such as é .
Currently I have some code to replace strings in a file that looks like
I currently have some large strings that I would like use as test data
I have a requirement to sort some strings that contain data like this: var

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.