c# string manipulation
Posted
by novicedeveloper
on Stack Overflow
See other posts from Stack Overflow
or by novicedeveloper
Published on 2010-03-11T18:46:28Z
Indexed on
2010/03/11
18:49 UTC
Read the original article
Hit count: 668
i have string of 9 letters.
string myString = "123987898";
I want to retrieve frist 3 letter "123" then 2 more leters "98" and then 4 more letters "7898".
Which c# string function support this functionality.
© Stack Overflow or respective owner