Recent content by Blaine Fredrickson

  1. B

    Delete an item in a comma separated list

    def var cFind as char no-undo. cFind = "," + itemtoremove + ",". cList = "," + cList + ",". cList = trim(replace(cList, cFind, ","), ","). or simply: cList = trim(replace( ( "," + cList + "," ), ( "," + cItem + "," ), ","), ","). Enjoy :D
Back
Top