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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:20:21+00:00 2026-05-26T18:20:21+00:00

I am taking a line from a file only if that file doen’t have

  • 0

I am taking a line from a file only if that file doen’t have a specific pattern.. and i want to take from that line the last 3 chars… my code is:

        while (!line.Contains(pattern))
        {
             String num = line.Substring((line.Length - 3), (line.Length - 2));
             System.Console.WriteLine(num);
        }

but i get an error..

Index and length must refer to a location within the string.
Parameter name: length

why i get that? i am starting the new string 3 chars before the end of the line and i stop 2 chars before.. :\

  • 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-26T18:20:22+00:00Added an answer on May 26, 2026 at 6:20 pm

    Substring takes an offset and then a number of characters to return:

    http://msdn.microsoft.com/en-us/library/aa904308%28v=VS.71%29.aspx

    So:

    String num = line.Substring((line.Length - 3), 3);
    

    This of course assumes that line.Length > 3. You could check with:

    String num = (line.Length < 3) ? line : line.Substring((line.Length - 3), 3);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 scanner objects, scan1 and scan2. scan1 is taking a line from
I have an input file that I want to sort based on timestamp which
I am taking command line arguments to main from parent to child and counting
Taking over some code from my predecessor and I found a query that uses
I'm trying to make an array from file path components. I have an array
I have the following line in my Window stanza in the XAML file: Closing=Window_Closing
The below code is from my other questions that I have asked here on
I'm trying to parse each IP line from the following file (loading from the
I have a CSV file. Each line is made up of the same format
I have to delete every word containing at least one number from each file

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.