Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

How would I pass additional parameters to MatchEvaluator

I have a bit of code that looks like this: text = reg.Replace(text, new MatchEvaluator(MatchEvalStuff)); I need to pass in a 2nd parameter like this: text = reg.Replace(text, new ...
2
votes
1answer
2k views

How does MatchEvaluator works? ( C# regex replace)

This is the input string 23x * y34x2. I want to insert " * " (star surrounded by whitespaces) after every number followed by letter, and after every letter followed by number. So my input string would ...
1
vote
3answers
172 views

How do you use Regular Expressions to replace a particular match (e.g “last” or “second to last”)?

I am trying to replace a single (last or next-to-last) match in a string. I have my Regular Expression already and it works, but it replaces ALL items, then I have to run back through and replace a ...
1
vote
2answers
927 views

The Unknown Exception DateTime C#

The data that I am sending to convertStringToDataSet function is <NewDataSet>\r\n <Table ID="Table1"> \r\n <PATNAME>Doe,JaneN</PATNAME>\r\n ...
0
votes
2answers
94 views

Need help with RegEx for ranges

I want to be able to use a RegEx to parse out ranges like a Windows Print dialog (such as 1-50,100-110,111,112). The following is my current code and I am not clear on how to parse for the additional ...