如何从选定的字串中找到左字串和右字串,例如,我有一个字串:
string input = "all our vidphone lines here are trapped. they recirculate the call to other offices within the building";
var word = new List<string> { "other", "they", "all" };
if (word.Any(input.Contains))
{
//and here I
我想把“你”换成“你的妹妹”。然而,像"youtube“这样的词必须保持不变。所以我决定用
replace(/ you /, " your sister ");
然而,现在的弦“我爱你!”保持不变,以及任何没有空格的字串后面的字串。我想知道“你”这个词后面的字符是不是字母。如果是,保持不变,如果不是,把它改为“你的妹妹”。
我在把阿拉伯字串和英文字串连在一起时遇到了麻烦,但他们的顺序是乱七八糟的!
我试过+接线员和str1.concat(..),但是没有什么对我有用。
var a = 'english'
var b = 'أ.ب-000082-13'
var c = '000004-ر خ-2014.xml'
//var myCoolString =a + '\\' + b + '\\' + c;
var myCoolString =a.concat("\\",b,"\\",c)
documen
如果我有这样的数组:
string[] test = new string[5] { "hello", "world", "test", "world", "world"};
我如何用相同的字符串,"world“,也就是在你知道有多少个字串之前就知道有多少个字串,做一个新的数组?
我在想这样的事情:
string[] newArray = new string[3];
for (int i = 0; i < 5; i++)
{
if (test