mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Merge branch 'issue_#8' into 'master'
Issue #8 Modified Sanitize See merge request Mr_Goldberg/goldberg_emulator!11
This commit is contained in:
commit
0543229b3e
1 changed files with 4 additions and 5 deletions
|
@ -23,11 +23,10 @@ std::string Settings::sanitize(std::string name)
|
|||
name.erase(std::remove(name.begin(), name.end(), '\n'), name.end());
|
||||
name.erase(std::remove(name.begin(), name.end(), '\r'), name.end());
|
||||
|
||||
for (int i = 0; i < name.size(); ++i) {
|
||||
if (name[i] >= 'a' && name[i] <= 'z') continue;
|
||||
if (name[i] >= 'A' && name[i] <= 'Z') continue;
|
||||
if (name[i] >= '0' && name[i] <= '9') continue;
|
||||
name[i] = ' ';
|
||||
for (auto& i : name)
|
||||
{
|
||||
if (!isprint(i))
|
||||
i = ' ';
|
||||
}
|
||||
|
||||
return name;
|
||||
|
|
Loading…
Reference in a new issue