Is there an Angular pipe which takes a String text, and lets user get an actual value?
String: {"ProductId": "1234", "ProductName": "Computer"}
Expected Pipe:
(item | pipe).productName
===> results in 'Computer'
(item | pipe).productId
===> results in 1234
Resource:
This following pipe converts an object into json. https://angular.io/api/common/JsonPipe
I need to convert string, and get a member value