P
pigeonrandle
Hi. It's late, my eyes and brain are both seizing up and i'm quite
surprised my fingers are still working!
Can anyone tell my what i am doing wrong here?
System::String* sTest = S"this.is.really.annoying.me";
System::String* sTemp[] = sTest->Split(System::Char[] {'.'});
I know i can use:
System::Char cDelim[] = {'.'};
System::String* sTest = S"this.is.really.annoying.me";
System::String* sTemp[] = sTest->Split(cDelim);
but for the love of good, there must be a way i can squeeze it into two
lines. Vertical space is at a premium!
James.
surprised my fingers are still working!
Can anyone tell my what i am doing wrong here?
System::String* sTest = S"this.is.really.annoying.me";
System::String* sTemp[] = sTest->Split(System::Char[] {'.'});
I know i can use:
System::Char cDelim[] = {'.'};
System::String* sTest = S"this.is.really.annoying.me";
System::String* sTemp[] = sTest->Split(cDelim);
but for the love of good, there must be a way i can squeeze it into two
lines. Vertical space is at a premium!
James.