View Single Post
  #15  
Old 07-27-2012, 06:31 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by cbk1994 View Post
splits a string at a delimiter (a space if you don't specify one).
It delimits by space and reads it like an array when you don't specify a parameter. Here's a case where I explicitly had to specify a space as the delimiter.

I.e.

PHP Code:
function onCreated() {
  
temp."blah, blah, blah";
  for (
temp.atemp.s.tokenize()) echo(temp.a);
  echo(
" ");
  for (
temp.atemp.s.tokenize(" ")) echo(temp.a);

PHP Code:
The script of NPC JerretNPC has been updated by fowlplay4
blah
blah
blah

blah
,
blah,
blah 
__________________
Quote:
Reply With Quote