|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
operations on stringHi all,
Anyone know some smart way to get two first substrings from string, in example how to get string "aaaa bbbb" from string "aaaa bbbb cccc ddddddd"? Hi,
Please find the method below which will return string; private string GetSecondSubstring(string str) { string[] Str; char dlimit = ' '; if (str.Length !=0) { Str = str.Split(dlimit); if (Str.GetUpperBound(0) > 1) str = Str[0] + dlimit + Str[1]; } return str; } Show quoteHide quote "ma***@o2.pl" wrote: > Hi all, > Anyone know some smart way to get two first substrings from string, in > example how to get string > "aaaa bbbb" from string "aaaa bbbb cccc ddddddd"? > > ma***@o2.pl напиÑав:
> Hi all, string str = "aaaa bbbb cccc ddddddd";> Anyone know some smart way to get two first substrings from string, in > example how to get string > "aaaa bbbb" from string "aaaa bbbb cccc ddddddd"? System.Text.RegularExpressions.Regex re = new System.Text.RegularExpressions.Regex(@"^\w+\s+\w+\b"); System.Text.RegularExpressions.Match match = re.Match(str); if (match.Success) { string res = match.Value; //........... }
HyperLinkField and OnRowDataBound
How do I get a bitmap from the theme? visibly disable img link Visual Development of Web Controls for SharePoint Can a repeater's ItemTemplate instantiate derived classes? how to show dialogbox when click on datagrid template column? extending web controls Help on java script navigator for database available? color of button in fileupload control? |
|||||||||||||||||||||||