And if you really want to split it into a proper array, tell split what it should split.
 Code:
$string1 = "printer1","printer2"
$string2 = "printer1" "printer2"
$array1 = Split($string1,",")
$array2 = Split($string2," ")