jlclancy
Technical User
- May 22, 2009
- 13
If I put them both in one or the other will stop working...
Removes white spaces...
stringvar input := {tbl.col};stringvar output := '';numbervar i;input := Trim(input);for i := 1 to Length(input)
Step 1 do if not(input in [Chr(13),Chr(10)])
then output := output + input;output;
Removes brackets...
trim(replace(Replace ({tbl.col}, "]","" ),"[", ""))
Also, if possible, how can I get the "can grow" option to work?
Removes white spaces...
stringvar input := {tbl.col};stringvar output := '';numbervar i;input := Trim(input);for i := 1 to Length(input)
Step 1 do if not(input in [Chr(13),Chr(10)])
then output := output + input;output;
Removes brackets...
trim(replace(Replace ({tbl.col}, "]","" ),"[", ""))
Also, if possible, how can I get the "can grow" option to work?