練習 按指定格式拼接字串

2021-10-10 07:06:18 字數 649 閱讀 5185

題目:

分析:

1.首先準備乙個int陣列,內容是1,2,3

2.定義乙個方法,用來將陣列變成字串

三要素

返回值型別:string

方法名稱:fromarraytostring

引數列表:int

3.格式:[word1#word2#word3]

用到:for迴圈,字串拼接,每個陣列元素之前都有乙個word字樣,分割使用得當是#,區分一下是不是最後乙個

4.呼叫方法

public

class

demo07stringpractise

; string result =

fromarraytostring

(array)

; system.out.

println

(result);}

public

static string fromarraytostring

(int

array)

else

}return str;

}}

時間按指定格式轉換

推薦閱讀 一。把秒數轉換成 00 00 00 大於一天顯示 1天2時local function second2dhms second if second 0 then return0,0,0,0 end local d math.floor second 86400 second second d...

時間按指定格式轉換

推薦閱讀 一。把秒數轉換成 00 00 00 大於一天顯示 1天2時local function second2dhms second if second 0 then return 0,0,0,0 endlocal d math.floor second 86400 second second d...

js獲取指定格式的時間字串

如下 對date的擴充套件,將 date 轉化為指定格式的string 月 m 日 d 小時 h 分 m 秒 s 季度 q 可以用 1 2 個佔位符,年 y 可以用 1 4 個佔位符,毫秒 s 只能用 1 個佔位符 是 1 3 位的數字 例子 new date format yyyy mm dd h...