2012-08-27 45 views
1

字符串我有一個字符串:如何分割基於另一個字符串

string fileName = VAH007157100_REINSTMT_20d5fe49.tiff 

我想在REINSTMT年底拆分此。

string splittedFileName = fileName.split("REINSTMT")[0]; 

上述不起作用。

我該如何去分解它來抓取單詞「REINSTMT」左側的所有內容?

回答

2

試試這個

string splittedFileName = fileName.Split(new string[]{"REINSTMT"}, 
                StringSplitOptions.None)[0]; 
+0

感謝大家。我只能在5分鐘內接受答案! – Testifier

0

爲了基於一個字符串,而不是一個char分裂,您需要提供第二個參數。請參閱文檔here

你可能想要的是

string splittedFileName = fileName.split(new string[] {"REINSTMT"}, StringSplitOptions.None)[0]; 
0

另一種方法是用字符串:

 

string fileName = "VAH007157100_REINSTMT_20d5fe49.tiff"; 
string splittedFileName = fileName.Substring(0, fileName.IndexOf("REINSTMT"));