c# - How to find all matches -


i want find matches in string "\abc/something/\abc/" ignoring part:

if string is:

string str = @"\abc/something\abc/\abc/something\abc/;

how should write pattern 2 matches of \abc/something\abc/?

since using ^ , $ define beginning , end in case wouldn't work entire string begin , end that.

you can try out various regex's here: http://regexstorm.net/tester

but looks should match on \\abc/


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -

jdbc - Not able to establish database connection in eclipse -