You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/cpp/concepts/strings/terms/rfind/rfind.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ CatalogContent:
14
14
- 'paths/computer-science'
15
15
---
16
16
17
-
The **`rfind()`** function returns the position of the last occurrence of a specified substring or character within a `std::string`. The search proceeds from right to left, and the function returns `std::string::npos` if no match is found.
17
+
The C++ **`rfind()`**[function](https://www.codecademy.com/resources/docs/cpp/functions) returns the position of the last occurrence of a given substring or character within a `std::string`. The search proceeds from right to left, and the function returns `std::string::npos` if no match is found.
0 commit comments