使用 APEX 我有两个字符串,想从每个字符串中删除两个字符串中的常用词。
String s1 = 'this and1 this is a string1';
String s2 = 'this and2 this is a string2';
所以结果将是:
s1 = 'and1 string1';
s2 = 'and2 string2';
我首先将每个字符串放在一个列表中:
List<String> strList1 = s1.split(' ');
List<String> strList2 = s2.split(' ');
不幸的是 removeAll() 不是 apex 中的列表方法,所以我无法执行:
strList1.removeAll(strList2);
strList2.removeAll(strList1);
有任何想法吗?使用集合会解决我的问题吗?