D - splitlines
- Charles Sanders (10/10) Jul 20 2003 I'm a bit confused about the behavior of split. I have this code
I'm a bit confused about the behavior of split. I have this code
void main() {
//Validator val = new Validator();
byte [] wholeFile = file.read("C:\\temp");
char [] [] lines = file.splitlines((char[])wholeFile);
for (int i = 0;i < lines.length;i++) {
puts((char[])lines[i]);
}
//val.Validate(lines,seperator);
}
Jul 20 2003








"Charles Sanders" <sanders-consulting comcast.net>