簡體   English   中英

如何從字符串中提取字符?

[英]How to extract a character from a string?

除了 substr 之外,還有其他 function 僅提取字符串的第 n 個元素嗎?

str="abc"
str[3] #does not work when i want to extract c using index 3

stringr::str_sub

library(stringr)
str_sub(str, 3)
[1] "c"

這也可以幫助:

strsplit("abc",split='')[[1]][3]

[1] "c"

您可以嘗試以下方法

library(stringr)
str="abc"
extracion_string <- str_extract(str, regex("c"))
#[1] "c"

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM