1 /****************************************************************************
2 ** $Id: rs_string.cpp 1769 2003-10-22 19:46:31Z andrew $
4 ** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
6 ** This file is part of the qcadlib Library project.
8 ** This file may be distributed and/or modified under the terms of the
9 ** GNU General Public License version 2 as published by the Free Software
10 ** Foundation and appearing in the file LICENSE.GPL included in the
11 ** packaging of this file.
13 ** Licensees holding valid qcadlib Professional Edition licenses may use
14 ** this file in accordance with the qcadlib Commercial License
15 ** Agreement provided with the Software.
17 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 ** See http://www.ribbonsoft.com for further details.
22 ** Contact info@ribbonsoft.com if any conditions of this licensing are
25 **********************************************************************/
27 #include "rs_string.h"
31 RS_String RS_StringCompat::replace(const RS_String & str, RS_Char c1, RS_Char c2)
35 for(uint i=0; i<ret.length(); ++i)
42 RS_String RS_StringCompat::replace(const RS_String & str, const RS_String & s1, const RS_String & s2)
49 for(uint i=0; i<str.length(); ++i)
51 if (str.mid(i, s1.length()) == s1)
65 void RS_StringCompat::test()
68 RS_String s1 = "abcdefg";
69 res = RS_StringCompat::replace(s1, 'a', 'A');
70 assert(res == "Abcdefg");
71 res = RS_StringCompat::replace(s1, 'b', 'B');
72 assert(res == "aBcdefg");
73 res = RS_StringCompat::replace(s1, 'g', 'G');
74 assert(res == "abcdefG");
76 res = RS_StringCompat::replace(s1, "", "blah");
77 assert(res == "abcdefg");
78 res = RS_StringCompat::replace(s1, "ab", "AB");
79 assert(res == "ABcdefg");
80 res = RS_StringCompat::replace(s1, "def", "DEF");
81 assert(res == "abcDEFg");
82 res = RS_StringCompat::replace(s1, "g", "G");
83 assert(res == "abcdefG");
84 res = RS_StringCompat::replace(s1, "fg", "FG");
85 assert(res == "abcdeFG");
88 res = RS_StringCompat::replace(s1, "a", "ABC");
91 res = RS_StringCompat::replace(s1, "ab", "");