PHP » PYTHON |
login |
register |
about
|
Try using the details here: http://www.tutorialspoint.com/python/string_split.htm
eg str = "The string you want to split" tokens = str.split() # Split using space as the delimiter print tokens Or tokens2 = str.split("n") #split using the letter na as the delimiter. print tokens2 strtok(PHP 4, PHP 5) strtok — Tokenize string Description
string strtok
( string $str
, string $token
)
string strtok
( string $token
)
strtok() splits a string (str ) into smaller strings (tokens), with each token being delimited by any character from token . That is, if you have a string like "This is an example string" you could tokenize this string into its individual words by using the space character as the token. Note that only the first call to strtok uses the string argument. Every subsequent call to strtok only needs the token to use, as it keeps track of where it is in the current string. To start over, or to tokenize a new string you simply call strtok with the string argument again to initialize it. Note that you may put multiple tokens in the token parameter. The string will be tokenized when any one of the characters in the argument are found. Parameters
Return ValuesA string token. Examples
Example #1 strtok() example
<?php
The behavior when an empty part was found changed with PHP 4.1.0. The old behavior returned an empty string, while the new, correct, behavior simply skips the part of the string:
Example #2 Old strtok() behavior
<?php The above example will output: string(0) "" string(9) "something"
Example #3 New strtok() behavior
<?php The above example will output: string(9) "something" bool(false)
NotesWarning
This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE, such as 0 or "". Please read the section on Booleans for more information. Use the === operator for testing the return value of this function. |
more
Recently updated
more
Most requested
more
Last requests
|