simstr 1.7.3
Yet another strings library
 
Loading...
Searching...
No Matches
simstr::e_ascii_upper< K > Struct Template Reference

Generate a string based on the original one, replacing all ASCII lowercase letters (a-z) with uppercase ones. More...

#include <strexpr.h>

Detailed Description

template<is_one_of_char_v K>
struct simstr::e_ascii_upper< K >

Generate a string based on the original one, replacing all ASCII lowercase letters (a-z) with uppercase ones.

Template Parameters
K- character type, deduced on the source string.

Takes the original string and copies it, replacing the ASCII lowercase letters (a-z) with uppercase ones. Any string object can be taken as the source string. Example

stringa upper = "Upper case version is: '" + e_ascii_upper(source_str) + "'.";
Generate a string based on the original one, replacing all ASCII lowercase letters (a-z) with upperca...
Definition strexpr.h:6922

The documentation for this struct was generated from the following file: