.Net Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - More.Net Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 22nd, 2004, 04:02 PM
bonzaitrimmer bonzaitrimmer is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Posts: 3 bonzaitrimmer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Regular expression question

I would like to convert a string in the form
"ThisIsATest" to a sting in the form of " this is a test".

Basically all characters that are capitol should be converted to lowercase and given a leading space.

Using the Regex.Replace method, how would you complete this?

Thanks

Reply With Quote
  #2  
Old January 26th, 2004, 08:41 PM
sano sano is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2000
Location: Redmond, WA
Posts: 218 sano User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 9
Code:
using System;
using System.Text.RegularExpressions;

public class RegexExample {
	
	public static void Main() {
		
		Regex regex = new Regex( "(?<capitalLetter>[A-Z])" );
		string str = "thisIsAString";

		if ( regex.IsMatch( str ) ) {
			Console.WriteLine( regex.Replace( str, " ${capitalLetter}" ).ToLower() );
		}

	}

}

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - More.Net Development > Regular expression question


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT