I'm trying to preg_split() a string of tags delimited by commas, double quotes, or spaces.

This is the code I have so far. The idea is to make it as easy as possible for the user to input tags without the use of a javascript solution (which I may go to later).

$tagfield = 'Tag Tag2, Tag3 "Tag" "A Tag"';

$tags = preg_split('/[^(.)^a-zA-Z0-9]+/', $tagfield, NULL, PREG_SPLIT_NO_EMPTY);

The output I'm getting is:

array (
    0 => 'Tag',
    1 => 'Tag2',
    2 => 'Tag3',
    3 => 'Tag',
    4 => 'A',
    5 => 'Tag',
)

My desired output would be:

array (
    0 => 'Tag',
    1 => 'Tag2',
    2 => 'Tag3',
    3 => 'Tag',
    4 => 'A Tag',
)

I'm not quite sure how I should grab a two-word tag.

link|improve this question
Why... why wouldn't you choose a single delimiter? – Matt Ball Dec 28 '11 at 4:27
It comes down to user experience. This is part of my validation process and instead of throwing the user an error, I would like it to just sort of "figure it out" for them, since it can be done. – David Hemphill Dec 28 '11 at 4:40
1  
Maybe it's just a "power user" thing, but I'd much rather be told that there's a single delimiter I can use, and be told up front, rather than sit there trying to guess what twisted logic the program is using. – Matt Ball Dec 28 '11 at 4:42
I understand the feeling, which is why I'm going to explicitly tell the user that a certain format is preferred, but I don't want to punish them when I can just as easily fix it. – David Hemphill Dec 28 '11 at 4:47
1  
Your comments didn't even seem to try to help. Why did you comment? – David Hemphill Dec 28 '11 at 6:38
show 4 more comments
feedback

2 Answers

Why not a preg_match_all?

preg_match_all('/([a-zA-Z0-9]+)|(?:"([a-zA-Z0-9 ]+)")/i', 'Tag Tag2, Tag3 "Tag" "A Tag"', $result);

Edit:

I accept the unelegantless part of the solution, however it does not return the double quotes. Here is the code I mentioned before. Please, paste the more elegant one you find :)

<?php
preg_match_all('/([a-zA-Z0-9]+)|(?:"([a-zA-Z0-9 ]+)")/i', 'Tag Tag2, Tag3 "Tag" "A Tag"', $result);
$result=array_filter(array_map('array_filter', $result));
print_r(array_merge($result[1], $result[2]));
?>

Output:

Array
(
    [0] => Tag
    [1] => Tag2
    [2] => Tag3
    [3] => Tag
    [4] => A Tag
)
link|improve this answer
This is the output I get when using this: array ( 0 => array ( 0 => 'Tag', 1 => 'Tag2', 2 => 'Tag3', 3 => '"Tag"', 4 => '"A Tag"', ), 1 => array ( 0 => 'Tag', 1 => 'Tag2', 2 => 'Tag3', 3 => '', 4 => '', ), 2 => array ( 0 => '', 1 => '', 2 => '', 3 => 'Tag', 4 => 'A Tag', ), ) – David Hemphill Dec 28 '11 at 5:05
I'm not a PHP guy, but merging the second and third array and removing empty values is the result you are looking for, right? – Mosty Mostacho Dec 28 '11 at 5:16
Seems a little unelegant to me to do that. Not to mention, the regex returns the double quotes, which is not desired. Thanks for the suggestion though. – David Hemphill Dec 28 '11 at 5:26
You're code is correct, and inelegant working code is better than not-working elegant code. I will post if I find something better. Thanks for the help :) – David Hemphill Dec 28 '11 at 6:54
feedback

make allowance for space in your preg /[^(.)^a-zA-Z0-9/s]+/ slash s

link|improve this answer
I tried your solution and a few mods, but couldn't get it to work. – David Hemphill Dec 28 '11 at 4:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.