Abbreviates a full name by reducing all words except the last (surname) to their first letter.
Registered as a process-text handler.
| Parameter | Description |
|---|---|
Param1 |
Full name string (e.g. John Peter Smith) |
Splits the input on whitespace. Returns the first letter of each word except the last, space-separated. The surname is omitted from the output entirely.
Example: "John Peter Smith" → "J P"
Returns the initials as a space-separated string.
ObjProcessText(ObjData.ObjData) — inherits database and config access from ObjData.
cythonize -3 -a -i ObjTextInitials.py
Updated : 2025-10-02