The extension processes plain text through a simple workflow:
|
,
\t
\n
||
Input:
Plain Text: "AJohn|B30|C5000.50\nAJane|B25|C7500.00"Field Separator: "|"Record Separator: "\n"Headers: [{"Name", "A"},{"Age", "B"}, {"Salary", "C"}]
Output:[
{
"Name": "John",
"Age": 30,
"Salary": 5000.50
},
"Name": "Jane",
"Age": 25,
"Salary": 7500.00
}
]