Delphi 2007 中是否有任何集成解决方案来检查 TStringList 是否包含某个值的一部分?
例如:
List.AddObject('This is a string', customStringObject1);
List.AddObject('This is a mushroom', customStringObject2);
List.AddObject('Random stuff', customStringObject3);
搜索“This is a”应该会给我“true”,因为前两个元素部分包含这个。
到目前为止,我知道的唯一方法是TStringList.find(string,integer)
,但这会执行完整的字符串比较,即仅搜索This is a string将返回 true。
有什么建议么?