Home » U++ Library support » U++ Core » no String::Replace() ?  
	
		
		
			| no String::Replace() ? [message #11274] | 
			Wed, 29 August 2007 19:44   | 
		 
		
			
				
				
				
					
						  
						guido
						 Messages: 169 Registered: April 2006 
						
					 | 
					Experienced Member  | 
					 | 
		 
		 
	 | 
 
	
		Hi, 
 
I'm adapting some code written to Apple CoreFoundation: 
 
String es = s;
es.replace('\'', "''"); 
 
I came up with this: 
 
String es = s;
int pos = 0;
while ( (pos = es.Find('\'', pos)) >= 0) {
  es.Insert(pos, '\'');
  pos += 2;
} 
 
First, does this look correct? 
Second, would you think Replace() method would be a usefull addition to String? 
 
Guido  
		
		
		
 |  
	| 
		
	 | 
 
 
 |  
  
 
	
	  | 
	 | 
	
		no String::Replace() ?
		By:  guido on Wed, 29 August 2007 19:44  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  mirek on Thu, 30 August 2007 16:23  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  forlano on Sun, 05 April 2009 09:16  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  mirek on Sun, 05 April 2009 09:45  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  koldo on Fri, 10 April 2009 17:27  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  forlano on Fri, 10 April 2009 20:12  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  tojocky on Sat, 23 May 2009 19:13  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  alendar on Mon, 08 March 2010 02:18  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  sevenjay on Thu, 07 October 2010 15:13  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  mirek on Sun, 10 October 2010 20:01  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  mdelfede on Mon, 11 October 2010 09:39  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  zsolt on Sat, 16 October 2010 02:02  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  mirek on Mon, 11 October 2010 12:19  
	 | 
 
	  | 
	 | 
	
		Re: no String::Replace() ?
		By:  zsolt on Sat, 16 October 2010 02:14  
	 | 
  
Goto Forum:
 
 Current Time: Tue Nov 04 02:56:05 CET 2025 
 Total time taken to generate the page: 0.05684 seconds 
 |