Reputation: 467
I have String value
val a: String = "{\"message\": \"value\"}" val b: String = "<tag>some</tag>"
And I need get from it its values in AnyContent format, not in JSON or XML.
Upvotes: 0
Views: 147
Reputation: 10681
Use play.api.mvc.AnyContentAsText for your purpose
play.api.mvc.AnyContentAsText
Upvotes: 2