【发布时间】:2015-10-29 09:18:41
【问题描述】:
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
我是 Delphi 的新手。 Delphi 中是否有contains 命令或执行相同操作的任何其他命令?
【问题讨论】:
-
stackoverflow.com/questions/30180634/… 如果 s.ToUpper.Contains(a.ToUpper) 那么