![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| perl equivalent to grep -c | popeye | Shell Programming and Scripting | 6 | 04-19-2008 02:57 AM |
| Strtok function.... | Tanvirk | Linux | 3 | 01-24-2008 10:16 AM |
| export equivalent command in PERL | ammu | Shell Programming and Scripting | 1 | 09-17-2007 04:46 PM |
| better way than strtok? | annie | High Level Programming | 7 | 10-05-2005 03:01 PM |
| Perl equivalent of ksh if / echo statement | gefa | Shell Programming and Scripting | 2 | 02-17-2005 12:07 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
I believe the split() function is the same. split() splits a string into a list of tokens:
$foo = 'this is a test'; @tokens = split(/ /,$foo); print "$_\n" fo @tokens; output: this is a test split - perldoc.perl.org |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|