Canoe
Comprehensive Atmosphere N' Ocean Engine
extract_substring.hpp
Go to the documentation of this file.
1 #ifndef SRC_UTILS_EXTRACT_SUBSTRING_HPP_
2 #define SRC_UTILS_EXTRACT_SUBSTRING_HPP_
3 
4 #include <string>
5 
6 // extract name before delimiter
7 std::string extract_first(std::string first_second, std::string delimiter);
8 
9 // extract name after delimiter
10 std::string extract_second(std::string first_second, std::string delimiter);
11 
12 #endif
std::string extract_first(std::string first_second, std::string delimiter)
std::string extract_second(std::string first_second, std::string delimiter)