The exact syntax depends on how your data is structured. Assuming your JSON looks like this:
{
"Born At": "New York, NY"
}
you should be able to use the following expression:
split(triggerBody()?['Born At'], ',')[0]
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin