名前の姓名の分割 ★
姓名が混ざった名前を姓と名に分割します。
URL
https://api.excelapi.org/person/name-separate
パラメーター
設定 | 必須 | 説明 |
---|---|---|
type | ✔ | 姓名どちらを取得するか指定する。 last: 姓 first: 名 |
fullname | ✔ | 姓名が混ざった名前を指定する。 |
使用例
- Microsoft Excel
- Google Spreadsheets
B2: 姓
=WEBSERVICE("https://api.excelapi.org/person/name-separate?type=last&fullname="&ENCODEURL(A2))
C2: 名
=WEBSERVICE("https://api.excelapi.org/person/name-separate?type=first&fullname="&ENCODEURL(A2))
B2: 姓
=IMPORTXML("https://api.excelapi.org/person/name-separate?type=last&fullname="&ENCODEURL(A2),".")
C2: 名
=IMPORTXML("https://api.excelapi.org/person/name-separate?type=first&fullname="&ENCODEURL(A2),".")
ヒント
スペース文字等で区切られている場合は、textsplit機能が有効です。