in reply to problem with split function
If this does not correct your problem, please provide the sample data and the whole block of code you are trying.#!/usr/bin/perl -w use strict; # Your code $delimiter = quotemeta $delimeter; my @array = split ( /$delimiter/, $line );
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: problem with split function
by jclaudio (Initiate) on Oct 20, 2003 at 17:03 UTC | |
by diotalevi (Canon) on Oct 20, 2003 at 19:23 UTC |