例如,使用@if
_ga = request.COOKIES.get('_ga')
。现在,我必须在新变量中定义GA1.1.1432317817.1125843050
之后的所有内容。但是,GA1.1.
也可以是GA1.1.
等。点是一致的。
您将如何提取它?
答案 0 :(得分:0)
使用FUN <- function(start, end){
n <- length(start) ; last <- start[n]
if(last >= end)
return(start[-n])
else
FUN(c(start, round((last + 1) * 1.55)), end)
}
FUN(1, 900)
# [1] 1 3 6 11 19 31 50 79 124 194 302 470 730
例如:
str.split
输出:
a = "GA1.1.1432317817.1125843050"
b = a.split(".", 2)[-1]
print(b)