Hey, i remember a while back i was on here asking how i would use regex/sub to turn the following:

:H,U,RX, H,U,PY,fl00r G,U,RX,.d0g G,U,PY,.se7en H,U,MY,.NightChillz H,U,FY,.۵Ρεãċè۵И۵Ŀớ√è۵


Into:

 fl00r .d0g .se7en .NightChillz .۵Ρεãċè۵И۵Ŀớ√è۵

Without isung a loop, which was what i currently had, untill about 20 minutes ago, i was bored, and ran into that section of one of my sockets, and decided to play with it, the data i showed you in the first line is $6-, and this is what i managed to come up with tonight using $regsub, and it works PERFECT grin

Code:
 
var %a = $chr(44), %b = {1,2}, %c
 if ($regsub($right($6-,-1),/( $+ $+(\w,%a,\w,%a,\w,%b,%a) $+ )/gi,,%c)) {
do what i want you to....
if i //echo -a %c right now, it would echo the second line i showed above ;)
}
 



Pretty cool eh wink