Hi,
This feature returning the first name in our pipe line .But for now you can write your own custom logic using our customCode Service .Here is code which you can use in your custom Logic:
String name = "Naresh Dwivedi";
String[] splited = name.split(" ");
System.out.println( "First Name is :"+ splited[0]);