方法一:
1. 將字幕檔案用文字編輯軟體開啟,複製貼上到word裡。
2. alt+f11調出vba編輯工具,f7開啟**視窗(【檢視】——【**視窗】)。
3. **如下,寫好後執行或者儲存。
sub方法二:mmm()
selection.endkey unit:=wdstory
selection.homekey unit:=wdline
selection.endkey unit:=wdline, extend:=wdextend
doif
asc(selection.text) = 13
then
selection.typebackspace
elseif selection.text like "
##:##:##,### --> ##:##:##,###*
"then
selection.typebackspace
selection.moveup unit:=wdline, count:=1
elseif
isnumeric(mid(selection.text, 1, len(selection.text) - 1)) = true
then
selection.typebackspace
selection.moveup unit:=wdline, count:=1
else
selection.moveup unit:=wdline, count:=1
endif
selection.homekey unit:=wdline
selection.endkey unit:=wdline, extend:=wdextend
loop
until (selection.information(wdfirstcharacterlinenumber) = 1
and selection.information(wdactiveendpagenumber) = 1
)end sub
1. 將字幕檔案用文字編輯軟體開啟,複製貼上到word裡。
2. 把^p^p全部替換為+
3. 把^p全部替換為=
4. 把+全部替換為^p
5. 全選——【插入】——【**】——【文字轉換成**】
6. 刪除多餘的列。最後效果:
jquery封裝的時間軸
概述 很多時候,都會用到類似於時間軸的東西,鑑於網路資源沒有那麼順手,就想著自己搞乙個,在此將原始碼貼出來。效果 樣式檔案style.css timeline timeline ul.ulvec timeline ul li.livec timeline ul.ulhor timeline ul l...
時間軸控制項TimeLineView的實現
首先來看看效果圖吧,可以根據需要設定出很炫的效果 android中經常會用到時間軸,那麼如何實現時間軸呢?首先我們了解時間軸的構成 1 時間球 2 直線 3 位置 下面介紹乙個時間軸實現的開源 把這幾個問題解決再掌握基本的繪製過程就可以實現時間軸了。下面先來看 1 定義屬性,使用者可以自定義的屬性值...
最簡單的時間軸實現
private listsorting listdata month cumonth day cuday return data 對時間的判斷,我這裡單獨提出到乙個工具類中,這樣方便應用中其他地方如果有相同的時間顯示需求是,可以快速使用。部分 如下 public static string gett...