summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 16:47:05 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 16:47:05 +0000
commitcf53fd1fc85d9ea14bd26eb5f0f79f617db2da4a (patch)
tree04f0f0e5f7c884bed63f47cbf077960098d5ecfd /cosv
parentd8b10abf59423aa2b69a5ebaf62f2661a670587c (diff)
INTEGRATION: CWS adc18 (1.4.38); FILE MERGED
2007/09/20 12:16:14 np 1.4.38.1: #i81775#
Diffstat (limited to 'cosv')
-rw-r--r--cosv/source/strings/string.cxx44
1 files changed, 35 insertions, 9 deletions
diff --git a/cosv/source/strings/string.cxx b/cosv/source/strings/string.cxx
index 25b133f99c43..8ff5989133e7 100644
--- a/cosv/source/strings/string.cxx
+++ b/cosv/source/strings/string.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: string.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:09:11 $
+ * last change: $Author: hr $ $Date: 2007-11-02 17:47:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -36,15 +36,17 @@
#include <precomp.h>
#include <cosv/string.hxx>
-
// NOT FULLY DECLARED SERVICES
#include <string.h>
#include <cosv/comfunc.hxx>
+
+
namespace csv
{
+
inline const char *
str_from_StringOffset( const String & i_rStr,
str::size i_nOffset )
@@ -262,6 +264,35 @@ String::substr( position_type i_nStartPosition,
return Null_();
}
+String::position_type
+String::find( const char * i_strToSearch,
+ position_type i_nSearchStartPosition ) const
+{
+ csv_assert(i_strToSearch != 0);
+
+ if ( i_nSearchStartPosition < length()
+ AND
+ *i_strToSearch != '\0' )
+ {
+ const char * p = strstr(c_str() + i_nSearchStartPosition, i_strToSearch);
+ if (p != 0)
+ return static_cast<position_type>(p - c_str());
+ }
+ return str::position(str::npos);
+}
+
+String::position_type
+String::find( char i_charToSearch,
+ position_type i_nSearchStartPosition ) const
+{
+ if (i_nSearchStartPosition <= length())
+ {
+ const char * p = strchr(c_str() + i_nSearchStartPosition, i_charToSearch);
+ if (p != 0)
+ return static_cast<position_type>(p - c_str());
+ }
+ return str::position(str::npos);
+}
const String &
String::Null_()
@@ -386,11 +417,6 @@ compare( const CharOrder_Table & i_rOrder,
}
-} // namespace csv
-
-
-
-
-
+} // namespace csv