resources have full name ex(ABC Patel). to how I can split it.
Use the below code
Example
“ABC Patel”
This will give “ABC”
In_TransactionItem.SpecificContent("Resources").ToString.Split(" "c)(0)
This will give “Patel”
In_TransactionItem.SpecificContent("Resources").ToString.Split(" "c)(1)
This will give split results as an array
In_TransactionItem.SpecificContent("Resources").ToString.Split(" "c)
thank you. it will worked ![]()
