有没有办法检索刀片中当前网址的父网址?例如,如果我在df <- data.frame("a"= c("123-wave-hi","234-boo-low","563-hi-dsa","897-op-ghhs"),
"b"= runif(4,2,10),
"c"= runif(4,5,20),
stringsAsFactors = F)
我想要/users/1
。 E.g:
/users
我希望它可以重复使用所有资源,所以我不想要<a href="{{ parent() }}">Back</a>
。
答案 0 :(得分:1)
如果总是
&LT;某事&gt; /数字
您可以使用request()->segment(1);
如果不是这种情况,您可以编写可重复使用的助手
public function removeLastSegment(string $url): string
{
$stringParts = explode('/', $url);
array_pop($stringParts); // remove last element
return implode('/', $stringParts);
}
答案 1 :(得分:0)
这是我的解决方案:
from sklearn.feature_extraction.text import CountVectorizer
cv = CountVectorizer(tokenizer=lambda x: x, lowercase=False)
m = cv.fit_transform(list_)
# To transform to dense matrix
m.todense()
# To get the values correspond to each column
cv.get_feature_names()
# If you need dummy columns, not count
m = (m > 0)