Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / September 2007

Tip: Looking for answers? Try searching our database.

Regex Help

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Barry - 03 Sep 2007 15:47 GMT
Hi

Using regex i want to extract

games-world-
102a

from http://www.sokoban.com/games/games-world-102a

some times url might be http://www.sokoban.com/games/
                    or http://www.sokoban.com/games

in the last 2 cases i want "" (empty string) returned

what will the regexpression for the be

TIA
Barry
Jesse Houwing - 03 Sep 2007 21:53 GMT
Hello Barry,

> Hi
>
[quoted text clipped - 12 lines]
> TIA
> Barry

Regex rx = new Regex(@"http://www\.sokoban\.com/games/(?<captureThis>.*)",
RegexOptions.None);

Match m = rx.Match("... your text here ...")
string result = "";
if (m.Success)
{
    result = m.Groups["captureThis"].Value;
}
return result;

You might also want to consider usign the Uri class or System.IO.Path they're
both very good at extractign parts of an URI. And probably a bit faster and
easier to maintain over time.

Signature

Jesse Houwing
jesse.houwing at sogeti.nl


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.