sgp4/libsgp4/Util.cc

44 lines
1.2 KiB
C++
Raw Permalink Normal View History

2013-04-01 10:33:34 +00:00
/*
* Copyright 2013 Daniel Warner <contact@danrw.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2011-12-24 00:07:23 +00:00
#include "Util.h"
#include <algorithm>
#include <locale>
#include <functional>
2022-11-13 12:59:41 +00:00
namespace libsgp4::Util
2011-12-24 00:07:23 +00:00
{
void TrimLeft(std::string& s)
{
s.erase(s.begin(),
2022-11-13 13:14:27 +00:00
std::find_if(s.begin(), s.end(), [](unsigned char c){ return std::isgraph(c) != 0; }));
2011-12-24 00:07:23 +00:00
}
void TrimRight(std::string& s)
{
2022-11-13 13:14:27 +00:00
s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char c){ return std::isgraph(c) != 0; }).base(),
2011-12-24 00:07:23 +00:00
s.end());
}
void Trim(std::string& s)
{
TrimLeft(s);
TrimRight(s);
}
2022-11-13 12:59:41 +00:00
} // namespace libsgp4::Util