Feb 11, 2003 #1 admoore IS-IT--Management May 17, 2002 224 US I need help in declaring a TAB as a field separator when tokenizing string data... Any help here? TIA, -Allen Moore
I need help in declaring a TAB as a field separator when tokenizing string data... Any help here? TIA, -Allen Moore
Feb 11, 2003 #2 skiflyer Programmer Sep 24, 2002 2,213 US Have you looked into preg_split and split? $blah = split("\t", $data); or $blah = preg_split("[\t]", $data); -Rob Upvote 0 Downvote
Have you looked into preg_split and split? $blah = split("\t", $data); or $blah = preg_split("[\t]", $data); -Rob
Feb 11, 2003 #3 danielhozac Programmer Aug 21, 2001 2,058 SE Even [tt]explode[/tt] (the fastest of the splitting functions) can handle tabs. //Daniel Upvote 0 Downvote