当前位置: 代码迷 >> 综合 >> Salesforce 找出String中所有符合条件的SubString
  详细解决方案

Salesforce 找出String中所有符合条件的SubString

热度:30   发布时间:2023-12-19 01:59:12.0
参考:

https://iwritecrappycode.wordpress.com/2012/06/29/extracting-strings-with-regex-in-salesforce-apex/

Pattern p = Pattern.compile('\\{([^}]*)\\}');  //带括号
// Pattern p = Pattern.compile('(?i)(?m)(?<=\\{).*?(?=\\})');  //不带括号
Matcher m = p.matcher(s);
List<String> apis = new List<String>();
while (m.find()) 
{apis.add(m.group()); }
System.debug('获取所有字段'+apis);
  相关解决方案