Hello,
i would like to replace the %lists but only the tok witch have - ($chr(34))
Output should be: test|"-test"|test2|"-test2"|txt
Code:
alias replace {
  var %list = test|-test|test2|-test2|txt
  var %temp
  var %i = 1
  while (%i <= $numtok(%list,124)) {
    if ($chr(45) isin $gettok(%list,%i,124)) { 
    %temp = %temp $replce($gettok(%list,%i,124),$gettok(%list,%i,124),$chr(34) $+ $gettok(%list,%i,124) $+ $chr(34)) }
    inc %i
  }
  echo -a output: %temp
}

THX

Last edited by MrUser; 02/01/10 05:22 PM.