I have several documents, I want to remove the alphabets from data field, based on the 1st _ in the data field, please see the following output. and if the data is empty the get message "Not Auto found"
[
{
"data": "ABCS_auto"
},
{
"data": "TRQWEY_car_2"
},
{
"data": "ALPHAB1234RAVO_Garie_2__4_22__11"
},
{
"data": ""
},
]
Expected Output
[
{
"data": "auto"
},
{
"data": "car_2"
},
{
"data": "Garie_2__4_22__11"
},
{
"data": "No Auto found"
},
]