_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
コマンド、または同じ操作を実行する他のコマンドはありますか?
DelphiのStrUtils
の関数を使用できます
uses
StrUtils;
..
if ContainsText('A.Sven,G.Jane,Jack', 'Jane') then
...
ContainsText
は、指定されたテキストで大文字小文字を区別せずにサブテキストが見つかった場合にtrue
を返します
StrUtils
には、StartsText
、EndsText
、ReplaceText
などの便利な関数もあります。