Re: [PHP-DB] Help in tokenizing a string

2002-02-01 Thread David Sullivan
I'm not sure why that isn't working, but this might do what you want: $index = strrpos($im_file, \\); $im = substr($im_file, $index + 1, strlen($im_file)); I just tested it out here and that works fine, $im = image.jpg On February 1, 2002 02:41 am, you wrote: Good day to all. I tried the

[PHP-DB] Help in tokenizing a string

2002-01-31 Thread George Lioumis
Good day to all. I tried the following code from PHP's manual if (isset($submit)) { if ($submit == Save) { echo $im_fileBR; $tok = strtok($im_file, \\); while ($tok) { echo $tokBR; $tok = strtok (\\); } } } I have the string $im_file =C:\\a_path\\image.jpg and I want to