2017-08-22 72 views
-1

我正在嘗試使用salesforce進行一些基本檢查string對象方法 下面是我試圖執行的示例代碼。轉義字符串中的括號。包含在頂點

String myStr = 'Hello (AB)'; 

if(myString.contains('(AB)') { 
... Do stuff 
} 

我想查找從"(" and ending with ")"開始的字符串。 我試過把'\(', '\\('但似乎沒有工作。

提前致謝!

回答

0

在使用中可以試試下面的代碼

String s1 = '(Yellow)'; 
if(String.isNotBlank(s1.substringBetween('(',')'))){ 
System.debug('s1'+s1); 
}