标签: r regex
尝试保留/和|之间的文本。字符。
示例:
test <- "https://example.com:323/u/8794|text"
我期望的是
8794
我尝试过的事情:
gsub(".*/||.*", "", test)