Skip to content

Commit

Permalink
Merge pull request #69 from Cctqlhh/master
Browse files Browse the repository at this point in the history
s.find_first_not_of -> s.find_last_not_of
  • Loading branch information
applenob authored Dec 10, 2023
2 parents bbaa238 + 20ab7ab commit 8de7e26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/ch09.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
| `s.find_first_of(args)` |`s`中查找`args`中任何一个字符第一次出现的位置 |
| `s.find_last_of(args)` |`s`中查找`args`中任何一个字符最后一次出现的位置 |
| `s.find_first_not_of(args)` |`s`中查找第一个不在`args`中的字符 |
| `s.find_first_not_of(args)` |`s`中查找最后一个不在`args`中的字符 |
| `s.find_last_not_of(args)` |`s`中查找最后一个不在`args`中的字符 |

args必须是一下的形式之一:

Expand Down

0 comments on commit 8de7e26

Please sign in to comment.