We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e4f684 commit 8defb76Copy full SHA for 8defb76
README.md
@@ -151,7 +151,7 @@ fuse:pos = `n:46/v:54`
151
152
```python
153
def stripword(word):
154
- return (''.join([ n for n in word if n.isalnum() ])).lower()
+ return (''.join([ n for n in word if n.isalnum() ])).lower()
155
```
156
157
CSV数据库虽然没有记录该字段,但每次加载到内存以后会自动为每个单词生成该字段,而 SQLite/MySQL 数据库则是建表的时候就包含该字段,插入单词时为该单词自动计算后插入,以后不在改变。
0 commit comments