Hi all,
i need to check a series of sub-list if the same string exists in the corresponding sub-list of a different list.
The idea is to rename types but i need to check if the proposed name doesnt already exist and if it does replace it with another one.
Tanks for any help
If you are checking for the exact same name, you should use List.Contains.
If you use String.Contains you get True also when substrings are matching, and I guess it’s not what you want.
Have you already tried something like this?
Hmm… here’s a graph that renames types with a shared name, you might find it useful…
Rename Types Duplicates.dyn (18.2 KB)
Mark
Thanks guys,
i managed to get it done… i think 
1 Like