- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
convert url parameters into json - Apache Nifi
- Labels:
-
Apache NiFi
Created ‎02-03-2021 10:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Everyone,
Sorry if this question seems dumb, but I have query parameter (that I received via ListenHttp) in format a=value_a&b=value_b and so on, I want to convert this to json as the form given below -
{
"a" : "value_a",
"b" : "value_b"
.
.
}
I am not quite sure, but I think I should be using ReplaceText, but I am unable to understand how to write the regex. If using ReplaceText is the one I should not use on Nifi, then please do let me know how to approach the same?
Thanks!
Ashwin
Created ‎02-04-2021 12:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was able to convert the same using replace text
Search Value: (.*)=(.*)&(.*)=(.*)&(.*)=(.*)&(.*)=(.*)
Replace Value: {'$1':'$2','$3':'$4','$5':'$6','$7':'$8'}
Since the number of parameters for me was fixed to 4, this was enough to suffice me! If somebody has got an Idea how to do this dynamically, I am ears!
Created ‎02-04-2021 12:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was able to convert the same using replace text
Search Value: (.*)=(.*)&(.*)=(.*)&(.*)=(.*)&(.*)=(.*)
Replace Value: {'$1':'$2','$3':'$4','$5':'$6','$7':'$8'}
Since the number of parameters for me was fixed to 4, this was enough to suffice me! If somebody has got an Idea how to do this dynamically, I am ears!
