*tok will ignore your null-parameters... Here's a quick regex shot:
Code:
alias parsetest {
  var %t = XXXXXXXXX '1''HorseC''HC_afk''founder''''male''us''xxxxxx N.Y.''0000-00-00''us,mirc''mIRC, scripting, Eggdrops, programming''horsec.jpg''xxxxx@sxxxxx.net''sales, strong computer background''http://forum.mirc.org''#mIRC'
  noop $regex(%t,/'([^']*)'/g)
  var %n = 1
  while (%n <= $regml(0)) { 
    var -s %chunk. $+ $v1 $regml($v1)
    inc %n
  }
}
Note that I don't know whether literal '-chars in the data are forbidden or will be quoted/escaped in some way. They likely will break the current expression. smile