> I'm trying to take a string like: 'abcd' and add a fwd slash every other char, like: 'a/b/c/d/' - $str = implode('/',preg_split('/\b|\B/',$str,-1,PREG_SPLIT_NO_EMPTY)).'/'; David