当前位置:网站首页>Implementing fuzzy query with dataframe
Implementing fuzzy query with dataframe
2022-07-06 05:03:00 【Sheep sheep pig】
Example
1. contains function
- str contain XX
attr[attr.a_attr_single.str.contains(' coat ')]

- str With XX start
# Regular expressions
attr[attr.a_attr_single.str.contains('^ Ordinary ')]

- str With XX ending
# Regular expressions
attr[attr.a_attr_single.str.contains(' shirt $')]

2. startwith / endwith function
# With XXX start
attr[attr.a_attr_single.str.startswith(' Ordinary ')]

# With XXX ending
attr[attr.a_attr_single.str.endswith(' vest ')]

边栏推荐
- Embedded development program framework
- win10电脑系统里的视频不显示缩略图
- Postman manage test cases
- 集合详解之 Map + 面试题
- Leetcode 186 Flip the word II in the string (2022.07.05)
- Acwing week 58
- Collection + interview questions
- Mongodb basic knowledge summary
- Quelques conseils communs sur l'inspecteur de l'unit é, généralement pour les extensions d'éditeur ou d'autres
- 行业专网对比公网,优势在哪儿?能满足什么特定要求?
猜你喜欢
随机推荐
Embedded development program framework
RT thread analysis - object container implementation and function
集合详解之 Map + 面试题
Summary of three log knowledge points of MySQL
[NOIP2009 普及组] 分数线划定
[buuctf.reverse] 159_[watevrCTF 2019]Watshell
从0到1建设智能灰度数据体系:以vivo游戏中心为例
Mysql高级篇学习总结9:创建索引、删除索引、降序索引、隐藏索引
Oracle query table index, unique constraint, field
Chip debugging of es8316 of imx8mp
JS quick start (II)
Weng Kai C language third week 3.1 punch in
Microblogging hot search stock selection strategy
力扣(LeetCode)186. 翻转字符串里的单词 II(2022.07.05)
Nestjs配置文件上传, 配置中间件以及管道的使用
Building intelligent gray-scale data system from 0 to 1: Taking vivo game center as an example
Summary of redis basic knowledge points
Cve-2019-11043 (PHP Remote Code Execution Vulnerability)
What are the advantages of the industry private network over the public network? What specific requirements can be met?
[mathematical modeling] differential equation -- sustainable development of fishing industry







![[FreeRTOS interrupt experiment]](/img/8f/54422d346bb54d23fab824be2f17a3.jpg)

