I have a text like this:
Adress: hej123
Information:
person 1: Alex Doe, phone1: 1231453, day_night
person 2: Bob Doe, phone1: 1231515123, day_night
person 3: Carol Doe, phone1: 33333333, day
person 4: Dave Doe, phone1: 1234, night
and i need to make it as a json format like this:
[{“FullName”:“Alex Doe”,“PhoneNumber”:“1231453”,“Day”:true,“Night”:true},{“FullName”:“Bob Doe”,“PhoneNumber”:“1231515123”,“Day”:true,“Night”:true},{“FullName”:“Carol Doe”,“PhoneNumber”:“33333333”,“Day”:true,“Night”:false},{“FullName”:“Dave Doe”,“PhoneNumber”:“1234”,“Day”:false,“Night”:true}]
Can anybody help please?