📜  Apex-字符串

📅  最后修改于: 2020-11-05 03:09:34             🧑  作者: Mango


与其他任何编程语言一样,Apex中的String是任意字符集,没有字符限制。

String companyName = 'Abc International';
System.debug('Value companyName variable'+companyName);

字符串方法

Salesforce中的字符串类有很多方法。我们将在本章中介绍一些最重要且最常用的字符串方法。

包含

如果给定字符串包含提到的子字符串,则此方法将返回true。

句法

public Boolean contains(String substring)

String myProductName1 = 'HCL';
String myProductName2 = 'NAHCL';
Boolean result = myProductName2.contains(myProductName1);
System.debug('O/p will be true as it contains the String and Output is:'+result);

等于

如果给定的字符串和传递给该方法的字符串具有相同的二进制字符序列并且它们不为null,则此方法将返回true。您也可以使用此方法比较SFDC记录ID。此方法区分大小写。

句法

public Boolean equals(Object string)

String myString1 = 'MyString';
String myString2 = 'MyString';
Boolean result = myString2.equals(myString1);
System.debug('Value of Result will be true as they are same and Result is:'+result);

equalsIgnoreCase

如果stringtoCompare与给定的字符串具有相同的字符序列,则此方法将返回true。但是,此方法不区分大小写。

句法

public Boolean equalsIgnoreCase(String stringtoCompare)

以下代码将返回true,因为字符串字符和序列相同,而忽略大小写。

String myString1 = 'MySTRING';
String myString2 = 'MyString';
Boolean result = myString2.equalsIgnoreCase(myString1);
System.debug('Value of Result will be true as they are same and Result is:'+result);

去掉

此方法删除从给定字符串中stringToRemove提供的字符串。当您要从字符串删除某些特定字符并且不知道要删除的字符的确切索引时,此功能很有用。此方法区分大小写,并且如果出现相同的字符序列但大小写不同,将无法使用。

句法

public String remove(String stringToRemove)

String myString1 = 'This Is MyString Example';
String stringToRemove = 'MyString';
String result = myString1.remove(stringToRemove);
System.debug('Value of Result will be 'This Is Example' as we have removed the MyString 
   and Result is :'+result);

removeEndIgnoreCase

此方法删除从但只有如果它发生在端部给定字符串中stringToRemove提供的字符串。此方法不区分大小写。

句法

public String removeEndIgnoreCase(String stringToRemove)

String myString1 = 'This Is MyString EXAMPLE';
String stringToRemove = 'Example';
String result = myString1.removeEndIgnoreCase(stringToRemove);
System.debug('Value of Result will be 'This Is MyString' as we have removed the 'Example'
   and Result is :'+result);

以。。开始

如果给定的字符串以方法中提供的前缀开头,则此方法将返回true。

句法

public Boolean startsWith(String prefix)

String myString1 = 'This Is MyString EXAMPLE';
String prefix = 'This';
Boolean result = myString1.startsWith(prefix);
System.debug(' This will return true as our String starts with string 'This' and the 
   Result is :'+result);