Click here to Skip to main content
15,903,856 members
Home / Discussions / C#
   

C#

 
AnswerRe: Need help with API Values Pin
Richard MacCutchan22-Sep-17 3:46
mveRichard MacCutchan22-Sep-17 3:46 
AnswerRe: Need help with API Values Pin
jschell22-Sep-17 8:58
jschell22-Sep-17 8:58 
QuestionDebug HTTP Vlient Handler (specifically cookies) in C# Pin
julian bechtold22-Sep-17 2:46
julian bechtold22-Sep-17 2:46 
Questionsplit method bug Pin
WoodChuckChuckles22-Sep-17 2:56
WoodChuckChuckles22-Sep-17 2:56 
AnswerRe: split method bug Pin
PIEBALDconsult22-Sep-17 2:51
mvePIEBALDconsult22-Sep-17 2:51 
GeneralRe: split method bug Pin
WoodChuckChuckles22-Sep-17 2:56
WoodChuckChuckles22-Sep-17 2:56 
AnswerRe: split method bug Pin
Richard MacCutchan22-Sep-17 3:44
mveRichard MacCutchan22-Sep-17 3:44 
GeneralRe: split method bug Pin
WoodChuckChuckles22-Sep-17 5:43
WoodChuckChuckles22-Sep-17 5:43 
I am trying to split it by ';'. This is a file that I'm reading in. 20170630;37;Denver;Other Non-Interest Expense from RI item 7.d. : Travel Expense=$88,799. Excess public-facing w ebsite address listings f rom
RC-M line 8.b.: sparkalpha.com, www.getsparkalpha.com, www.getsparkalpha.com, www.sparkcapitalone.com.;20170728;Explanations;Call;m1b

C# keeps bringing the RC-M down a line (tabs it which isn't in the file). It is screwing up my delimitation and causing an out of bounds error. This doesn't happen anywhere else in the file.

C#
class Program
    {
        static void Main(string[] args)
        {
            string CurrentLine;
            string FilePath = "C:\\12837.SDF.txt";
            using (StreamReader sr = new StreamReader(FilePath))
            {
                while(!sr.EndOfStream)
                {
                    CurrentLine = sr.ReadLine();
                     GetSplit(CurrentLine);
                   // Console.WriteLine(array.Length.ToString());

                }
            }
        }

        private static void GetSplit(string CurrentLine)
        {
            string[] array = CurrentLine.Split(';');
            string first = array[0];
            string second = array[1];
            string third = array[2];
            string four = array[3];
          //  string five = array[4];
           // string six = array[5];
          //  string seven = array[6];
           // string eight = array[7];
            Console.WriteLine(first + " " + second + " " + third + " " + four);
        }
    }
}


This is the test code I'm running for reference and not the actual code I end up using but it still comes up no matter what. I tried to Replace it and I might just try to skip the line when it pops up. By the way, I have the comments in there because I'm trying to see how many indexes it actually brings in.
Here's what it looks like in console:
20170630 112837 Denver Other Non-Interest Expense from RI item 7.d. : Travel Expense=$88,799. Excess public-facing w ebsite address listings f rom
RC-M line 8.b.: sparkalpha.com, www.getsparkalpha.com, www.getsparkalpha.com, www.sparkcapitalone.com. 20170728 explanations RIE

Here's what the different line looks like:
20170630 112837 Denver Adjustment investment
GeneralRe: split method bug Pin
Richard MacCutchan22-Sep-17 5:56
mveRichard MacCutchan22-Sep-17 5:56 
GeneralRe: split method bug Pin
eddieangel22-Sep-17 6:42
eddieangel22-Sep-17 6:42 
GeneralRe: split method bug Pin
WoodChuckChuckles22-Sep-17 7:56
WoodChuckChuckles22-Sep-17 7:56 
GeneralRe: split method bug Pin
eddieangel22-Sep-17 8:13
eddieangel22-Sep-17 8:13 
QuestionI wants to show a stack panel using the TextBlock controls for the MyNotes about box. Which of the following code will help for me ? Pin
Member 1309368222-Sep-17 0:19
Member 1309368222-Sep-17 0:19 
AnswerRe: I wants to show a stack panel using the TextBlock controls for the MyNotes about box. Which of the following code will help for me ? Pin
OriginalGriff22-Sep-17 0:53
mveOriginalGriff22-Sep-17 0:53 
AnswerRe: I wants to show a stack panel using the TextBlock controls for the MyNotes about box. Which of the following code will help for me ? Pin
Pete O'Hanlon22-Sep-17 2:09
mvePete O'Hanlon22-Sep-17 2:09 
QuestionI wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
Member 1309368221-Sep-17 22:59
Member 1309368221-Sep-17 22:59 
AnswerRe: I wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
Eddy Vluggen21-Sep-17 23:15
professionalEddy Vluggen21-Sep-17 23:15 
AnswerRe: I wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
OriginalGriff21-Sep-17 23:18
mveOriginalGriff21-Sep-17 23:18 
AnswerRe: I wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
Jochen Arndt22-Sep-17 0:17
professionalJochen Arndt22-Sep-17 0:17 
GeneralRe: I wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
Rob Philpott22-Sep-17 0:19
Rob Philpott22-Sep-17 0:19 
GeneralRe: I wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
Jochen Arndt22-Sep-17 0:23
professionalJochen Arndt22-Sep-17 0:23 
GeneralRe: I wants to convert a string to an array of bytes using UTF-8 encoding and write it to a file, which of the following code should be use ? Pin
Rob Philpott22-Sep-17 1:15
Rob Philpott22-Sep-17 1:15 
QuestionImplementing a COM Message Filter, it always fails... Pin
Joan M21-Sep-17 5:57
professionalJoan M21-Sep-17 5:57 
SuggestionRe: Implementing a COM Message Filter, it always fails... Pin
Richard Deeming21-Sep-17 6:14
mveRichard Deeming21-Sep-17 6:14 
GeneralRe: Implementing a COM Message Filter, it always fails... Pin
Joan M21-Sep-17 6:21
professionalJoan M21-Sep-17 6:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.