Click here to Skip to main content
15,900,258 members
Home / Discussions / C#
   

C#

 
AnswerRe: Build exe dynamically Pin
PIEBALDconsult9-Jun-10 3:18
mvePIEBALDconsult9-Jun-10 3:18 
GeneralRe: Build exe dynamically Pin
kasraa000980009-Jun-10 9:28
kasraa000980009-Jun-10 9:28 
QuestionHow to write this regex? Pin
imbiz8-Jun-10 23:37
imbiz8-Jun-10 23:37 
AnswerRe: How to write this regex? Pin
Pete O'Hanlon8-Jun-10 23:42
mvePete O'Hanlon8-Jun-10 23:42 
GeneralRe: How to write this regex? Pin
OriginalGriff9-Jun-10 0:40
mveOriginalGriff9-Jun-10 0:40 
AnswerRe: How to write this regex? Pin
OkkiePepernoot9-Jun-10 0:29
OkkiePepernoot9-Jun-10 0:29 
GeneralRe: How to write this regex? [modified] Pin
imbiz9-Jun-10 1:12
imbiz9-Jun-10 1:12 
AnswerRe: How to write this regex? Pin
OriginalGriff9-Jun-10 0:38
mveOriginalGriff9-Jun-10 0:38 
private void button1_Click(object sender, EventArgs e)
    {
    Regex regexWithAllPossible = new Regex(@"([\+\^%{}])");
    string source = @"+  -->   {+}^  -->   {^}%  -->   {%}{  -->   {{}}  -->   {}}";
    string result = regexWithAllPossible.Replace(source, new MatchEvaluator(CheckMatch));
    }
private string CheckMatch(Match m)
    {
    return "{" + m.Value + "}";
    }

Did you know:
That by counting the rings on a tree trunk, you can tell how many other trees it has slept with.

GeneralRe: How to write this regex? Pin
imbiz9-Jun-10 0:54
imbiz9-Jun-10 0:54 
GeneralRe: How to write this regex? Pin
OriginalGriff9-Jun-10 0:59
mveOriginalGriff9-Jun-10 0:59 
GeneralRe: How to write this regex? Pin
imbiz9-Jun-10 1:19
imbiz9-Jun-10 1:19 
GeneralRe: How to write this regex? Pin
OriginalGriff9-Jun-10 1:22
mveOriginalGriff9-Jun-10 1:22 
GeneralRe: How to write this regex? Pin
imbiz9-Jun-10 1:50
imbiz9-Jun-10 1:50 
GeneralRe: How to write this regex? Pin
OriginalGriff9-Jun-10 2:12
mveOriginalGriff9-Jun-10 2:12 
GeneralRe: How to write this regex? Pin
Luc Pattyn9-Jun-10 1:46
sitebuilderLuc Pattyn9-Jun-10 1:46 
GeneralRe: How to write this regex? Pin
OriginalGriff9-Jun-10 2:08
mveOriginalGriff9-Jun-10 2:08 
GeneralRe: How to write this regex? Pin
AspDotNetDev10-Jun-10 12:40
protectorAspDotNetDev10-Jun-10 12:40 
GeneralRe: How to write this regex? Pin
AspDotNetDev10-Jun-10 12:41
protectorAspDotNetDev10-Jun-10 12:41 
QuestionMaximum Width And Height of panel Pin
VCsamir8-Jun-10 21:42
VCsamir8-Jun-10 21:42 
AnswerRe: Maximum Width And Height of panel Pin
DaveyM698-Jun-10 22:27
professionalDaveyM698-Jun-10 22:27 
AnswerRe: Maximum Width And Height of panel Pin
Tsuda Kageyu8-Jun-10 22:39
Tsuda Kageyu8-Jun-10 22:39 
QuestionMerge menu items using the MenuStrip Pin
Eduard Keilholz8-Jun-10 21:29
Eduard Keilholz8-Jun-10 21:29 
QuestionAdvancing On Pressing Enter Pin
Roger Wright8-Jun-10 19:43
professionalRoger Wright8-Jun-10 19:43 
AnswerRe: Advancing On Pressing Enter Pin
Anshul R8-Jun-10 20:21
Anshul R8-Jun-10 20:21 
AnswerRe: Advancing On Pressing Enter Pin
Peace ON8-Jun-10 20:37
Peace ON8-Jun-10 20:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.