我在尋找的4個不同的子串x中的位置,並試圖以這四個輸出合併爲一個字符串累計:[R 4個合併成字符串1個字符串
x <- ("AAABBADSJALKACCWIEUADD")
outputA <- gregexpr(pattern = "AAA", x)
outputB <- gregexpr(pattern = "ABB", x)
outputC <- gregexpr(pattern = "ACC", x)
outputD <- gregexpr(pattern = "ADD", x)
我想合併這四個輸出並將該合併結果作爲文本文件輸出,每個元素以新行分隔。
merged_output
# 1
# 3
# 13
# 20
謝謝