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

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

#include <strexpr.h>

Detailed Description

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

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

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

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

stringa lower = "Lower case version is: '" + e_ascii_lower(source_str) + "'.";
Generate a string based on the original one, replacing all ASCII uppercase letters (A-Z) with lowerca...
Definition strexpr.h:6945

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