Le jeudi 10 avril 2014 19:45:04 UTC+2, Jacob Quinn a écrit : > > You *could* use setdiff, it depends on what you're working with (e.g. a > range of integers) >
I am working with general collections. but then I can define
findnot(a,b) = setdiff(1:length(a), findin(a,b))
which seems to work as I want.
julia> findnot("honolulu", "ou")'
1x4 Array{Int64,2}:
1 3 5 7
Thanks!
