如何在Delphi中检查字符串是否包含子字符串?

时间:2015-10-29 09:18:42

标签: delphi delphi-7

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命令或执行相同操作的任何其他命令?

1 个答案:

答案 0 :(得分:30)

您可以使用 Delphi

uses StrUtils; .. if ContainsText('A.Sven,G.Jane,Jack', 'Jane') then ... 中的功能
ContainsText
如果在给定文本中找到了没有区分大小写的子文本,

true将返回StrUtils

StartsText中,您还可以找到便捷功能,例如EndsTextReplaceTextdbo.abx_sysSplitTwo()