本文介绍了独立字符串由制表符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个文本文件,制表符分隔。我如何才能通过检测标签这个字符串分隔成子的一个数组?


解决方案

 字符串s =123\t456\t789; 
的String [] =拆分s.Split('\t');


I have a text file that is tab-delimited. How can I separate this string into substrings for an array by detecting the tabs?

解决方案
string s = "123\t456\t789";
string[] split = s.Split('\t');

这篇关于独立字符串由制表符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 08:56