I have a json array data like
{"RegistrationResult":"Registered Success:Empid:157:TableName:COMPANY156"}
Now how i want split the string and show the list view in qml like the follwing
Registered Success
Empid = 157
TableName = COMPANY156
Please tell the concept to split a string and show the result in qml
I can get result for the follwing method: {"RegistrationResult":["Registered Success","Empid":"157","TableName":"COMPANY156"]}
But i dont know how to split the string.. Please help..