ATLAS Offline Software
Loading...
Searching...
No Matches
removePrefix.cxx
Go to the documentation of this file.
1// Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3// Local include(s).
4#include "removePrefix.h"
5
7
8std::string removePrefix(std::string_view str, std::string_view prefix) {
9
10 if (str.starts_with(prefix)) {
11 return std::string(str.substr(prefix.size()));
12 }
13 return std::string(str);
14}
15
16} // namespace xAODMaker::Details
std::string removePrefix(std::string_view str, std::string_view prefix)
Remove a prefix from a string, if it exists.