Import first/last name recognition

pull/207/head
M66B 3 years ago
parent ea7b7f481b
commit 3232e0c979

@ -126,6 +126,12 @@ public class EntityAnswer implements Serializable {
if (c > 0) {
first = fullName.substring(0, c).trim();
last = fullName.substring(c + 1).trim();
} else {
c = fullName.indexOf('@');
if (c > 0) {
first = fullName.substring(0, c).trim();
last = null;
}
}
}
}

Loading…
Cancel
Save