Activity Forums Salesforce® Discussions How to convert a comma separated string into a list in Salesforce?

  • Nikita

    Member
    November 22, 2019 at 8:03 am

    Hi Yogesh,

    Salesforce provides String class which can be used to work with string. You can use the Split method

    For Example

    String alpha = 'A, B, C, D';
    
    List<String> lstAlpha = alpha.split(',');
    
    System.debug(lstAlpha);

     

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos