Click here to Skip to main content
15,890,882 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to replace very first character only......? Pin
Sun Rays26-Nov-07 20:11
Sun Rays26-Nov-07 20:11 
GeneralRe: How to replace very first character only......? Pin
Pankaj - Joshi26-Nov-07 21:35
Pankaj - Joshi26-Nov-07 21:35 
GeneralRe: How to replace very first character only......? Pin
Sun Rays26-Nov-07 22:07
Sun Rays26-Nov-07 22:07 
AnswerRe: How to replace very first character only......? Pin
KennyPatel26-Nov-07 21:12
KennyPatel26-Nov-07 21:12 
AnswerRe: How to replace very first character only......? Pin
KennyPatel26-Nov-07 21:14
KennyPatel26-Nov-07 21:14 
AnswerRe: How to replace very first character only......? Pin
KennyPatel26-Nov-07 21:15
KennyPatel26-Nov-07 21:15 
AnswerRe: How to replace very first character only......? Pin
KennyPatel26-Nov-07 21:18
KennyPatel26-Nov-07 21:18 
AnswerRe: How to replace very first character only......? Pin
Luc Pattyn27-Nov-07 1:58
sitebuilderLuc Pattyn27-Nov-07 1:58 
string str = "ABC-X-Y-Z";
int index = str.IndexOf("-");
if (index>=0) str = str.Substring(0,index)+ "." + str.Substring(index+1);


Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]


this months tips:
- before you ask a question here, search CodeProject, then Google
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get
- use PRE tags to preserve formatting when showing multi-line code snippets


AnswerRe: How to replace very first character only......? Pin
PIEBALDconsult27-Nov-07 10:33
mvePIEBALDconsult27-Nov-07 10:33 
AnswerRe: How to replace very first character only......? [modified] Pin
PIEBALDconsult27-Nov-07 13:33
mvePIEBALDconsult27-Nov-07 13:33 
QuestionMasked Formating Pin
Shaahinm26-Nov-07 18:58
Shaahinm26-Nov-07 18:58 
AnswerRe: Masked Formating Pin
Michael Sync26-Nov-07 19:22
Michael Sync26-Nov-07 19:22 
GeneralRe: Masked Formating Pin
Shaahinm26-Nov-07 19:28
Shaahinm26-Nov-07 19:28 
GeneralRe: Masked Formating Pin
Michael Sync26-Nov-07 19:50
Michael Sync26-Nov-07 19:50 
QuestionWrapping a text in textbox Pin
anu8126-Nov-07 18:52
anu8126-Nov-07 18:52 
AnswerRe: Wrapping a text in textbox Pin
Michael Sync26-Nov-07 19:21
Michael Sync26-Nov-07 19:21 
GeneralRe: Wrapping a text in textbox Pin
anu8126-Nov-07 19:40
anu8126-Nov-07 19:40 
GeneralRe: Wrapping a text in textbox Pin
Michael Sync26-Nov-07 20:08
Michael Sync26-Nov-07 20:08 
GeneralRe: Wrapping a text in textbox Pin
anu8126-Nov-07 20:22
anu8126-Nov-07 20:22 
Questionabout develope scheme Pin
jason_mf26-Nov-07 17:49
jason_mf26-Nov-07 17:49 
AnswerRe: about develope scheme Pin
Michael Sync26-Nov-07 19:18
Michael Sync26-Nov-07 19:18 
QuestionHow to connect to Mobile Providers? Pin
Satish - Developer26-Nov-07 17:38
Satish - Developer26-Nov-07 17:38 
GeneralRe: How to connect to Mobile Providers? Pin
Paul Conrad8-Dec-07 5:25
professionalPaul Conrad8-Dec-07 5:25 
QuestionHow to show image in ListView Second Column **** urgent [modified] Pin
VenkataRamana.Gali26-Nov-07 16:58
VenkataRamana.Gali26-Nov-07 16:58 
AnswerRe: How to show image in ListView Second Column **** urgent Pin
Paul Conrad28-Nov-07 14:37
professionalPaul Conrad28-Nov-07 14: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.