我怎么能拆分前2个字符串动态c#

时间:2016-05-11 10:34:27

标签: c# string split

我需要拆分动态字符串的前两个单词。

string ex: 11 PM EDT WED JUL 11 2001

string ex: 1100 PM AST TUE AUG 18 2015

string ex: multi formats

我需要像这样分开:

str1:  11 PM
str2:  1100 PM

我的代码:

int o = 1; myResults[3] = "";
    while (resultList[4].Substring(0, o++).Last() != 'M')
            myResults[3] = resultList[4].Substring(0, o).Trim(); //Time

结果:

11
11

2 个答案:

答案 0 :(得分:0)

试试这个:

myResults[3] = resultList[4].Split('M')[0] + "M";

答案 1 :(得分:0)

请尝试此代码。

$(document).ready(function(e)
{
//function to be called on click of the button
var generateHTML = function()
{
var bColor = $('#txtBgColor').val();
var fColor = $('#txtFontColor').val();
var dHtml = "<span style='color:"+ fColor +"background:"+bColor+"'>Book   Appointment Online</span>";

$('#dRegion').html("<pre>"+dHtml+"</pre>");
}
})