是否有熊猫函数来评估子字符串是否在给定的字符串中?

时间:2019-02-03 15:50:46

标签: python python-3.x pandas

我正在过滤Pandas Serie,以查找行是否为给定字符串的子字符串。 我尝试了这些指示,但未能成功:

url(r'^$', views.index, name='index')

我还测试了sting_to_test = "My String" filtered_data = my_serie[my_serie in sting_to_test] 函数,但似乎无法在单个字符串中使用它。

isin()

有没有解决方案而不循环遍历整个系列?

1 个答案:

答案 0 :(得分:1)

您可以尝试按以下方式使用applylambda

my_series = pd.Series(['AB', 'CD', 'BA'])
test_str = 'ABC'
print(my_series.apply(lambda row: row in test_str))