String content = "Jane"; String container = 'A.Sven,G.Jane,Jack'; // This is the string which i need to be searched with string content boolean containerContainsContent = StringUtils.containsIgnoreCase(container, content); // I used to write like this in java
I am new to Delphi. Is there a contains command in Delphi or any other command which performs the same operation?