解析字符串SQL Server,Ruby,Python?
我正在尝试解析这种数据的刺痛...它是来自API获取的一个领域...
{"displayValue"=>"LNA1234", "isMulti"=>true, "textValue"=>"PNA64582", "type"=>"entity_link", "value"=>["srp_zfeedr88N"]}
看起来很熟悉。就像Ruby中的JSON HASH一样……
什么是解析此方法的最佳方法。我将数据放在SQL Server表中,因此更可取TSQL。但是,如果更好的话,我也会考虑Ruby或Python。
I'm trying to parse this sting of data...its an field coming from an API GET...
{"displayValue"=>"LNA1234", "isMulti"=>true, "textValue"=>"PNA64582", "type"=>"entity_link", "value"=>["srp_zfeedr88N"]}
It looks familiar. Like a JSON hash in ruby...
What would be the best method to parse this. I have the data in a SQL Server table so TSQL preferable. But I would also consider Ruby or Python if it was better..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将存储的API数据转换为JSON。
示例数据:
语句:
结果:
You may try to transform and parse the stored API data as JSON.
Sample data:
Statement:
Result: