將字串捕到指定的字數 還有補上什麼文字
String.PadLeft(10, '@'); //指定10個字原 不足的字元在原字串左邊補上@
String.PadRight(10, '@');//指定10個字原 不足的字元在原字串右邊補上@
分割含有\n的字串(split string has \n)
using System.Text.RegularExpressions; //要先在上面使用這個 否則無法使用Regex
string[] _String = Regex.Split(text,@"\\n"); //@"\\n"可以找到 字串內有 \n的文字
全站熱搜
留言列表