Skip to content
Snippets Groups Projects

Consistent use of string methods

Merged Mark OLESEN requested to merge style-string-access into develop
38 files
+ 418
190
Compare changes
  • Side-by-side
  • Inline
Files
38
@@ -83,7 +83,8 @@ int main(int argc, char *argv[])
@@ -83,7 +83,8 @@ int main(int argc, char *argv[])
Info<<"camel-case => " << (word("camel") & "case") << nl;
Info<<"camel-case => " << (word("camel") & "case") << nl;
for (const auto& s : { " text with \"spaces'", "08/15 value" })
for (const auto& s : { " text with \"spaces'", "08/15 value" })
{
{
Info<<"validated \"" << s << "\" => " << word::validated(s) << nl;
Info<<"validated \"" << s << "\" => "
 
<< word::validated(s, true) << nl;
}
}
Info<< nl;
Info<< nl;
Loading