- for example, string buffer = ...; SubStrings<string> split; { auto colon = buffer.find(':'); if (colon != std::string::npos) { split = stringOps::splitSpace(buffer, colon+1); } } Not really possible with a substr() since that would create a new temporary which then disappears. Similarly awkward to split and then scan for the ':' to decide how many to discard. ENH: add pop_front() and pop_back() methods to SubStrings - the content is trivial enough (a pair of iterators) and the total number of elements is usually reasonable short so that removal of elements is inexpensive For example, string buffer = ...; auto split = stringOps::splitSpace(buffer); if (!split.empty() && split[0].str() == "face") { split.pop_front(); }
166 lines
4.1 KiB
C++
166 lines
4.1 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2016-2024 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Description
|
|
Test some string functionality
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "CStringList.H"
|
|
#include "DynamicList.H"
|
|
#include "IOstreams.H"
|
|
#include "fileNameList.H"
|
|
#include "stringOps.H"
|
|
#include "stringList.H"
|
|
#include "wordList.H"
|
|
#include "SubStrings.H"
|
|
|
|
using namespace Foam;
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int print(int argc, char *argv[])
|
|
{
|
|
Info<< "argc=" << argc << endl;
|
|
for (int i=0; i<argc; ++i)
|
|
{
|
|
Info<< " argv[" << i << "] = \"" << argv[i] << "\"" << endl;
|
|
}
|
|
return argc;
|
|
}
|
|
|
|
int print(const CStringList& cstrLst)
|
|
{
|
|
return print(cstrLst.size(), cstrLst.strings());
|
|
}
|
|
|
|
|
|
// Using nullptr termination
|
|
int print(char *argv[])
|
|
{
|
|
if (!argv)
|
|
{
|
|
Info<< "argv=null" << endl;
|
|
return 0;
|
|
}
|
|
|
|
int i=0;
|
|
while (argv[i])
|
|
{
|
|
Info<< " argv[" << i << "] = \"" << argv[i] << "\"" << endl;
|
|
++i;
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
|
|
// Main program:
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
DynamicList<string> dynlst(16);
|
|
|
|
dynlst.push_back("string1 with content");
|
|
dynlst.push_back("string2 other content");
|
|
dynlst.push_back("string3 more");
|
|
dynlst.push_back("string4 done");
|
|
|
|
{
|
|
CStringList inC(dynlst);
|
|
|
|
Info<< "input: " << dynlst << nl;
|
|
print(inC);
|
|
|
|
Info<< "null-terminated string list" << nl;
|
|
print(inC.strings());
|
|
|
|
Info<< "sublist: starting at " << inC.size()/2 << nl;
|
|
print(inC.strings(inC.size()/2));
|
|
|
|
Info<< nl;
|
|
}
|
|
|
|
{
|
|
CStringList inC({ "string1", "string2", "string3", "end" });
|
|
|
|
Info<< "null-terminated string list from " << nl;
|
|
print(inC.strings());
|
|
|
|
Info<< "sublist: starting at " << inC.size()/2 << nl;
|
|
print(inC.strings(inC.size()/2));
|
|
|
|
Info<< nl;
|
|
}
|
|
|
|
{
|
|
string testInput
|
|
(
|
|
" A test input line with various spacing "
|
|
" and text to be split on whitespace "
|
|
);
|
|
|
|
Info<< testInput << nl;
|
|
auto args = stringOps::splitSpace(testInput);
|
|
Info<< "split into " << args.size() << " args" << nl;
|
|
|
|
CStringList inC(args);
|
|
print(inC);
|
|
|
|
Info<< "sublist: starting at " << inC.size()/2 << nl;
|
|
print(inC.strings(inC.size()/2));
|
|
|
|
Info<< nl;
|
|
}
|
|
|
|
Info<< "command-line with " << CStringList::count(argv) << " items" << nl;
|
|
|
|
print(argc, argv);
|
|
|
|
Info<< nl;
|
|
{
|
|
dynlst.clear();
|
|
for (int i=0; i<argc; ++i)
|
|
{
|
|
dynlst.push_back(argv[i]);
|
|
}
|
|
|
|
Info<< "input: " << dynlst << endl;
|
|
CStringList inC(dynlst);
|
|
inC.reset(dynlst);
|
|
|
|
print(inC);
|
|
Info<< "length: " << inC.length() << endl;
|
|
std::cout.write(inC.data(), inC.length());
|
|
}
|
|
|
|
|
|
Info<< "\nEnd\n" << endl;
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|