將字串捕到指定的字數 還有補上什麼文字

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的文字

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 克羅 的頭像
    克羅

    克羅的UNITY教學 & 學習筆記

    克羅 發表在 痞客邦 留言(0) 人氣()