Case Insensitive searches using contains
I am using the following piece of code to check if the list cn contains "col_name" and if yes rename it as Target.The problem is col_name can be all upper case or lowercase and there is no way for me to control that.How do I make sure that the code gets executed irrespective of the case?
If( Contains( cn ,Lowercase("col_name") ),
:"col_name" << Set name("Target");
);
Thanks