網址
http://cssplant.com/
2015年4月30日 星期四
2015年4月29日 星期三
找回 Windows 檔案總管的工作列
開始 -> 執行 -> regedit
找到機碼
HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ Toolbar
將 Explorer , ShellBrowser, WebBrowser 之下的 ITBarLayout 刪除, 並重新啟動檔案總管
找到機碼
HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ Toolbar
將 Explorer , ShellBrowser, WebBrowser 之下的 ITBarLayout 刪除, 並重新啟動檔案總管
2015年4月23日 星期四
使用 javascript 解析 Json 格式資料
範例
var json = '{"data":true,"value":1}',
obj = JSON.parse(json);
alert(obj.value);
2015年4月21日 星期二
如何在 DOS 使用 gawk 取得特定範圍字串
語法
dir data*.txt /b | gawk -F "_" {"print $0\".\"$6"} | gawk -F "." {"system(\"sed "s/^^/\"$3\",/" \"$1\".\"$2\" \")"} > all.txt
將文字以 "_" 作為分隔字元, 取出全部與第六個字串,
重新組合後將每行行首加上指定字串, 並匯出到一個檔案.
dir data*.txt /b | gawk -F "_" {"print $0\".\"$6"} | gawk -F "." {"system(\"sed "s/^^/\"$3\",/" \"$1\".\"$2\" \")"} > all.txt
將文字以 "_" 作為分隔字元, 取出全部與第六個字串,
重新組合後將每行行首加上指定字串, 並匯出到一個檔案.
訂閱:
文章 (Atom)