Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

regex - Substitute/remove after nth occurrence of substring in string

I'd like a regex for sub in R to substitute the characters in a string which follow the nth occurrence of ";" in that string, where n is a variable number passed to the regex.

  stringA="a; b; c; d; e; f; g; h; i; j;"

    stringB<-sub("^(;){4}.*", "", stringA)
##---------------^My attempt at a regular expression here-------

Desired output:

stringB
    "a; b; c; d;"
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use the following regex:

^((?:[^;]*;){4}).*

It matches:

  • ^ - start of string
  • ((?:[^;]*;){4}) - (Group 1) captures a substring comprising 4 (or any number you pass with s variable) occurrences of
    • [^;]* - 0 or more symbols other than ;
    • ; - a literal semi-colon
  • .* - 0 or more characters, as many as possible

Using backreference \1 in the replacement pattern we restore the leading substring in the result.

See IDEONE demo (here, the limit threshold is passed as a string):

stringA="a; b; c; d; e; f; g; h; i; j;"
s <- "4"
stringB <- sub(sprintf("^((?:[^;]*;){%s}).*", s), "\1", stringA)
stringB
##  "a; b; c; d;"

Or, if you pass an integer value

s <- 4
sub(sprintf("^((?:[^;]*;){%d}).*", s), "\1", stringA)

See another demo


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...