Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
AnswerRe: Encoding problem with string from DLL Pin
ncjlee9-Jun-08 2:40
ncjlee9-Jun-08 2:40 
QuestionRe: Encoding problem with string from DLL Pin
steve_rm9-Jun-08 16:33
steve_rm9-Jun-08 16:33 
Questioni want to upload all files from one folder( in client side) to server without browse option Pin
md_azy8-Jun-08 21:30
md_azy8-Jun-08 21:30 
AnswerRe: i want to upload all files from one folder( in client side) to server without browse option Pin
Guffa8-Jun-08 21:33
Guffa8-Jun-08 21:33 
GeneralRe: i want to upload all files from one folder( in client side) to server without browse option Pin
md_azy9-Jun-08 1:29
md_azy9-Jun-08 1:29 
GeneralRe: i want to upload all files from one folder( in client side) to server without browse option Pin
Guffa9-Jun-08 6:38
Guffa9-Jun-08 6:38 
QuestionHow to remove zero using Regx Pin
Exelioindia8-Jun-08 21:27
Exelioindia8-Jun-08 21:27 
AnswerRe: How to remove zero using Regx Pin
Exelioindia8-Jun-08 21:47
Exelioindia8-Jun-08 21:47 
Hi all,


Sorry for this post. I found the solution. Please tell me is this a correct solution

Regex regex = new Regex(@"\d{4}", RegexOptions.IgnorePatternWhitespace | RegexOptions.Singleline);
string result="";
if (regex.IsMatch("00585"))
{
regex = new Regex(@"^0*");
result= regex.Replace("000508050", @"");
}

OutPut: 508050

Know is Drop, Unknown is Ocean

GeneralRe: How to remove zero using Regx Pin
ncjlee8-Jun-08 22:04
ncjlee8-Jun-08 22:04 
QuestionPloblem about multithread programing? Pin
abcomp018-Jun-08 21:26
abcomp018-Jun-08 21:26 
AnswerRe: Ploblem about multithread programing? Pin
ncjlee8-Jun-08 21:38
ncjlee8-Jun-08 21:38 
Questiongetting xml data from previous form Pin
laziale8-Jun-08 21:16
laziale8-Jun-08 21:16 
AnswerRe: getting xml data from previous form Pin
Ajay.k_Singh8-Jun-08 23:19
Ajay.k_Singh8-Jun-08 23:19 
Questionbit parameter problem Pin
Mr.Kode8-Jun-08 20:52
Mr.Kode8-Jun-08 20:52 
QuestionRe: bit parameter problem Pin
Vasudevan Deepak Kumar8-Jun-08 21:15
Vasudevan Deepak Kumar8-Jun-08 21:15 
AnswerRe: bit parameter problem Pin
Mr.Kode8-Jun-08 21:19
Mr.Kode8-Jun-08 21:19 
AnswerRe: bit parameter problem Pin
telha9-Jun-08 0:23
telha9-Jun-08 0:23 
AnswerRe: bit parameter problem Pin
Eslam Afifi9-Jun-08 2:07
Eslam Afifi9-Jun-08 2:07 
Questionhyperlink help Pin
csp8-Jun-08 19:52
csp8-Jun-08 19:52 
AnswerRe: hyperlink help Pin
Vasudevan Deepak Kumar8-Jun-08 20:43
Vasudevan Deepak Kumar8-Jun-08 20:43 
GeneralRe: hyperlink help Pin
csp8-Jun-08 21:53
csp8-Jun-08 21:53 
GeneralRe: hyperlink help Pin
csp8-Jun-08 23:53
csp8-Jun-08 23:53 
Questionrenaming .dll file gives error message Pin
pavya_Cool8-Jun-08 19:38
pavya_Cool8-Jun-08 19:38 
AnswerRe: renaming .dll file gives error message Pin
Vasudevan Deepak Kumar8-Jun-08 20:44
Vasudevan Deepak Kumar8-Jun-08 20:44 
GeneralRe: renaming .dll file gives error message Pin
pavya_Cool8-Jun-08 22:12
pavya_Cool8-Jun-08 22:12 

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.