hi Im trying to parse my string into 3 parts, and the delimiter is "//". Example of my string: ItemA=Andy//Male//Cat. However, I have some strings that have "/" as part of the string, and I'm unable to parse them properly, e.g.: Bac/h//Male//Dog I've used the following function but it doesnt parse properly. I've tried to replace Q with M but it doesnt work too.Appreciate any help pls. Thanks. name = scan(ItemA,1,"//",'Q'); gender =scan(ItemA,2,"//",'Q'); animal =scan(ItemA,2,"//",'Q');
... View more