Changeset 39897 in vbox for trunk/include/iprt
- Timestamp:
- Jan 27, 2012 3:25:44 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75956
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/ministring.h
r39277 r39897 688 688 * values less than 128; this is not verified. 689 689 * 690 * @param cFind Character to replace. Must be ASCII < 128. 691 * @param cReplace Character to replace cFind with. Must be ASCII < 128. 692 */ 693 void findReplace(char cFind, char cReplace); 690 * @param chFind Character to replace. Must be ASCII < 128. 691 * @param chReplace Character to replace cFind with. Must be ASCII < 128. 692 */ 693 void findReplace(char chFind, char chReplace); 694 695 /** 696 * Count the occurences of the specified character in the string. 697 * 698 * @param ch What to search for. Must be ASCII < 128. 699 * @remarks QString::count 700 */ 701 size_t count(char ch) const; 702 703 /** 704 * Count the occurences of the specified sub-string in the string. 705 * 706 * @param psz What to search for. 707 * @param cs Case sensitivity selector. 708 * @remarks QString::count 709 */ 710 size_t count(const char *psz, CaseSensitivity cs = CaseSensitive) const; 711 712 /** 713 * Count the occurences of the specified sub-string in the string. 714 * 715 * @param pStr What to search for. 716 * @param cs Case sensitivity selector. 717 * @remarks QString::count 718 */ 719 size_t count(const RTCString *pStr, CaseSensitivity cs = CaseSensitive) const; 694 720 695 721 /**
Note:
See TracChangeset
for help on using the changeset viewer.