Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
04 October 2012
split string in c# with regular expression instead of forloop
string s = "er32(s),re4'wr(a),f2.0(t)A(y),(a)"; s = Regex.Replace(s, @"[\w\s';.&,:]+\(([\w\d.]+)\)", "$1"); Response.Write(s);
No comments:
Post a Comment