Click here to Skip to main content
15,886,518 members
Home / Discussions / C#
   

C#

 
QuestionUsing a System.Windows.Forms.WebBrowser inside ASP web form Pin
trinm19879-Feb-09 14:51
trinm19879-Feb-09 14:51 
AnswerRe: Using a System.Windows.Forms.WebBrowser inside ASP web form Pin
N a v a n e e t h9-Feb-09 14:55
N a v a n e e t h9-Feb-09 14:55 
GeneralRe: Using a System.Windows.Forms.WebBrowser inside ASP web form Pin
trinm19879-Feb-09 15:08
trinm19879-Feb-09 15:08 
GeneralRe: Using a System.Windows.Forms.WebBrowser inside ASP web form Pin
N a v a n e e t h9-Feb-09 15:15
N a v a n e e t h9-Feb-09 15:15 
GeneralRe: Using a System.Windows.Forms.WebBrowser inside ASP web form Pin
ABitSmart9-Feb-09 17:22
ABitSmart9-Feb-09 17:22 
AnswerRe: Using a System.Windows.Forms.WebBrowser inside ASP web form Pin
PIEBALDconsult9-Feb-09 17:15
mvePIEBALDconsult9-Feb-09 17:15 
QuestionReplacement for VSA Pin
User 127829-Feb-09 14:14
User 127829-Feb-09 14:14 
Questiontokenize string Pin
lawrenceinba9-Feb-09 13:54
lawrenceinba9-Feb-09 13:54 
string strInput= "plotno 55,xx street,yy city";
           char[] delimiters = { ',', '#', ';', ' ', '/', '\0', '&', '-' };
           string[] strTemp = strInput.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);
           foreach (string a in strTemp)
           {

           Console.WriteLine(" token'd string is\t{0}\t", a);


the ouput of the above code is

token'd string is plotno
token'd string is 55
token'd string is xx
token'd string is street
token'd string is yy
token'd string is city

it doesnt takes the specified delimiters as a token..... how to tokenenize icluding delimiters...

thanks

the quieter u become more u hear

AnswerRe: tokenize string Pin
PIEBALDconsult9-Feb-09 14:53
mvePIEBALDconsult9-Feb-09 14:53 
GeneralRe: tokenize string Pin
lawrenceinba9-Feb-09 15:19
lawrenceinba9-Feb-09 15:19 
GeneralRe: tokenize string Pin
ABitSmart9-Feb-09 16:13
ABitSmart9-Feb-09 16:13 
AnswerRe: tokenize string Pin
ABitSmart9-Feb-09 15:20
ABitSmart9-Feb-09 15:20 
GeneralRe: tokenize string Pin
lawrenceinba9-Feb-09 15:26
lawrenceinba9-Feb-09 15:26 
QuestionAny one use LibCheck or know of an alternative Pin
pdohara9-Feb-09 12:25
pdohara9-Feb-09 12:25 
AnswerRe: Any one use LibCheck or know of an alternative Pin
lawrenceinba9-Feb-09 14:40
lawrenceinba9-Feb-09 14:40 
GeneralRe: Any one use LibCheck or know of an alternative Pin
pdohara11-Feb-09 8:24
pdohara11-Feb-09 8:24 
AnswerRe: Any one use LibCheck or know of an alternative Pin
pdohara14-Feb-09 9:40
pdohara14-Feb-09 9:40 
Questionpassing arrays to different methods Pin
alwaysthinking9-Feb-09 12:10
alwaysthinking9-Feb-09 12:10 
AnswerRe: passing arrays to different methods Pin
harold aptroot9-Feb-09 12:22
harold aptroot9-Feb-09 12:22 
GeneralRe: passing arrays to different methods Pin
alwaysthinking9-Feb-09 12:42
alwaysthinking9-Feb-09 12:42 
GeneralRe: passing arrays to different methods Pin
harold aptroot9-Feb-09 14:13
harold aptroot9-Feb-09 14:13 
AnswerRe: passing arrays to different methods Pin
Natza Mitzi9-Feb-09 12:41
Natza Mitzi9-Feb-09 12:41 
QuestionWebform and refresh Pin
Saamir9-Feb-09 11:53
Saamir9-Feb-09 11:53 
AnswerRe: Webform and refresh Pin
vaghelabhavesh9-Feb-09 13:53
vaghelabhavesh9-Feb-09 13:53 
AnswerRe: Webform and refresh Pin
EliottA9-Feb-09 14:02
EliottA9-Feb-09 14:02 

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.