Designing and Running Pipelines
Discuss how to use the SnapLogic platform.
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Mapper- string to int

Hello. I have a string value being returned. It contains numbers 0,1,2,3,4 and some empty strings. I need to insert this into a int datatype field which allows NULL values. How do I convert the string to int and the blanks to NULL and map. Thanks

vsuresh by New Contributor
  • 3829 Views
  • 3 replies
  • 0 kudos

Array to FlatFile

I have the following json: [ { “name”: [ “John”, “Rick”, “Martha” ], “city”: [ “New york”, “Washington”, “Delhi” ], “gender”: [ “Male”, “Male”, “Female” ] } ] Need to write this into csv but csv formatter needs the data to be flattened. How can i do ...