Functions | |
void | replace_nonprintable (std::basic_string< char > &string, char replacement) |
Replace all non-printable characters with replacement in string. | |
void | replace_nonprintable (std::basic_string< llwchar > &string, llwchar replacement) |
Replace all non-printable characters with replacement in a wide string. | |
void | replace_nonprintable_and_pipe (std::basic_string< char > &str, char replacement) |
Replace all non-printable characters and pipe characters with replacement in a string. | |
void | replace_nonprintable_and_pipe (std::basic_string< llwchar > &str, llwchar replacement) |
Replace all non-printable characters and pipe characters with replacement in a wide string. |
void LLStringFn::replace_nonprintable | ( | std::basic_string< char > & | string, | |
char | replacement | |||
) |
Replace all non-printable characters with replacement in string.
[in,out] | string | the to modify. out value is the string with zero non-printable characters. |
The | replacement character. use LL_UNKNOWN_CHAR if unsure. |
Definition at line 760 of file llstring.cpp.
Referenced by LLParcel::setMediaURL(), LLParcel::setMusicURL(), and LLParcel::setName().
void LLStringFn::replace_nonprintable | ( | std::basic_string< llwchar > & | string, | |
llwchar | replacement | |||
) |
Replace all non-printable characters with replacement in a wide string.
[in,out] | string | the to modify. out value is the string with zero non-printable characters. |
The | replacement character. use LL_UNKNOWN_CHAR if unsure. |
Definition at line 773 of file llstring.cpp.
void LLStringFn::replace_nonprintable_and_pipe | ( | std::basic_string< char > & | str, | |
char | replacement | |||
) |
Replace all non-printable characters and pipe characters with replacement in a string.
[in,out] | the | string to modify. out value is the string with zero non-printable characters and zero pipe characters. |
The | replacement character. use LL_UNKNOWN_CHAR if unsure. |
Definition at line 789 of file llstring.cpp.
void LLStringFn::replace_nonprintable_and_pipe | ( | std::basic_string< llwchar > & | str, | |
llwchar | replacement | |||
) |
Replace all non-printable characters and pipe characters with replacement in a wide string.
[in,out] | the | string to modify. out value is the string with zero non-printable characters and zero pipe characters. |
The | replacement wide character. use LL_UNKNOWN_CHAR if unsure. |
Definition at line 804 of file llstring.cpp.