diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-08 08:33:09 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-08 08:37:57 +0200 |
commit | fce720b3e4691eb3b7deef1d005d76b23123a5cb (patch) | |
tree | d5483bdfb7065c7691ddde3ab035343b67a825ba /comphelper | |
parent | ce924d97aaea265b8f58265bedb49dbcd71fbc31 (diff) |
comphelper: add string::join()
If there is a need for it, this could be extended later to work with uno
sequences and/or OUStrings as well.
Change-Id: Id0af8b1755c8e4b668720563d10a052337e1b2c9
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/string.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/comphelper/source/misc/string.cxx b/comphelper/source/misc/string.cxx index c5637966f5a2..8384e7325e12 100644 --- a/comphelper/source/misc/string.cxx +++ b/comphelper/source/misc/string.cxx @@ -270,6 +270,17 @@ uno::Sequence< OUString > return kws; } +OString join(const OString& rSeparator, const std::vector<OString>& rSequence) +{ + OStringBuffer aBuffer; + for (size_t i = 0; i < rSequence.size(); ++i) + { + if (i != 0) + aBuffer.append(rSeparator); + aBuffer.append(rSequence[i]); + } + return aBuffer.makeStringAndClear(); +} sal_Int32 compareNatural( const OUString & rLHS, const OUString & rRHS, const uno::Reference< i18n::XCollator > &rCollator, |