String content = "Jane"; String container = 'A.Sven,G.Jane,Jack'; // This is the string which i need to be searched with string content
contains我是 * Delphi * 的新手。Delphi 中是否有contains命令或任何其他执行相同操作的命令?
contains
xuo3flqw1#
您可以在 * Delphi * 中使用StrUtils中的函数
StrUtils
uses StrUtils; .. if ContainsText('A.Sven,G.Jane,Jack', 'Jane') then ...
ContainsText返回true(如果在给定文本中找到了不区分大小写的子文本)在StrUtils中,您还可以找到StartsText、EndsText和ReplaceText等方便的函数
ContainsText
true
StartsText
EndsText
ReplaceText
zbq4xfa02#
您可能还会发现System.SysUtils中的Contains函数很有用,如下所示。
System.SysUtils
Contains
uses Sysytem.SysUtils; .... txt := 'This is a string variable'; if txt.contains('str') then ....
2条答案
按热度按时间xuo3flqw1#
您可以在 * Delphi * 中使用
StrUtils
中的函数ContainsText
返回true
(如果在给定文本中找到了不区分大小写的子文本)在
StrUtils
中,您还可以找到StartsText
、EndsText
和ReplaceText
等方便的函数zbq4xfa02#
您可能还会发现
System.SysUtils
中的Contains
函数很有用,如下所示。