Skip to contents

该函数自动判断输入的 ID 是 DOI 还是 PubMed ID。

Usage

type_of_id(id)

Arguments

id

字符串,输入的 ID。

Value

字符串,"doi" 或 "pubmed"。

Examples

type_of_id("10.1000/xyz123")  # 返回 "doi"
#> [1] "doi"
type_of_id("12345678")        # 返回 "pubmed"
#> [1] "pubmed"