[Solved] how to get value from string in form of key value pair [closed]


Below is the solution for your problem:

import java.util.*;
import java.lang.*;

class Rextester
{  
    public static void main(String args[])
    {
        String str = new String("kyc_CWaccountOperatorName|DANIYAL,kyc_cnic_ind|9110129505705,kyc_fatherName|Abujan,kyc_motherMaidenName|MOTHER,kyc_CWmobileNumber|03312551746,kyc_CWdateOfBirth|20/02/1993,kyc_cnicDateOfExpiry|2027-02-20,kyc_CWplaceOfBirth|KHI,kyc_mailAddHouseFlat No|Dha,kyc_city|Abbottabad");
        String[] ar = str.replace("|","=").split(",",0);
        for(String s : ar)
            System.out.println(s);
    }
}

You can check output on the below link:

https://ideone.com/kzBYfl

1

solved how to get value from string in form of key value pair [closed]