首页

欢迎

 

Welcome

欢迎, 这是一个学习数学、讨论数学的网站.

转到问题

请输入问题号, 例如: 2512

IMAGINE, THINK, and DO
How to be a scientist, mathematician and an engineer, all in one?
--- S. Muthu Muthukrishnan

Local Notes

Local Notes 是一款 Windows 下的笔记系统.

Local Notes 下载

Sowya

Sowya 是一款运行于 Windows 下的计算软件.

详情

下载 Sowya.7z (包含最新版的 Sowya.exe and SowyaApp.exe)


注: 自 v0.550 开始, Calculator 更名为 Sowya. [Sowya] 是吴语中数学的发音, 可在 cn.bing.com/translator 中输入 Sowya, 听其英语发音或法语发音.





注册

欢迎注册, 您的参与将会促进数学交流. 注册

在注册之前, 或许您想先试用一下. 测试帐号: usertest 密码: usertest. 请不要更改密码.


我制作的 slides

Problem

随机显示问题

Problèmes d'affichage aléatoires

软件 >> C++
Questions in category: C++ (C++).

[C++] find_last_of

Posted by haifeng on 2024-04-08 09:58:20 last update 2024-04-08 10:03:20 | Answers (0)


C++ 中的 find_last_of() 函数经常会被误认为在字符串中搜寻某个字串最后出现的位置. 实际上它的功能是在字符串中搜索与其参数中指定的任何字符匹配的最后一个字符.

find_last_of() 有以下多种声明.

string (1)
size_t find_last_of (const string& str, size_t pos = npos) const;
c-string (2)
size_t find_last_of (const char* s, size_t pos = npos) const;
buffer (3)
size_t find_last_of (const char* s, size_t pos, size_t n) const;
character (4)
size_t find_last_of (char c, size_t pos = npos) const;

 

现在输入 symbol(x y what),  希望从末尾开始搜寻`)`, 则建议使用 

size_t rfind (char c, size_t pos = npos) const;

rfind() 会从指定的 pos 参数开始在字符串中往前寻找第一次出现的字符c.

 

参考

cplusplus.com/reference/string/string/find_last_of/