function_name()
commands #縮排 縮排是空出四個空格
賦值 = 左右不能加空格 value=4
if加空格與[ 隔開 if while
空行起著分隔**的作用
函式開始和結束、判斷或迴圈始末、函式呼叫始末以及前後聯絡不緊密的地方都要加空格
if expression1
then
commands1
else
commands2
fiif expression1
then
commadns1
elif expression2
then
commands2
elif expressionn
then
commandsn
else
commands(n+1)
fiwhile condition
docommands
done
for car in value_list
docomands
done
for ( init var; condition; change var )
docomands
done
sed刪除空行(包括由空格組成的空行)
sed實戰之 刪除空行 包括由空格組成的空行 首先要隆重介紹我們的測試檔案,因為這是非常特殊的檔案 forrest ubuntu public cat v wuhui.txt 1 m m 2 m m 3 m m 4 m m 5 m m 6 m m m 我用cat v選項,顯示不可見字元。m是換行的意...
PHP輸出空行 空格的問題
開頭輸出空行,是utf 8 bom問題。至於空格,則是在php的?識別符號後面還有空格或者空行引起的。所以刪除所有在?後的空格即可,還包括這個php所有include的php。utf 8 bom問題解決方法 用ultraedit32把smarty模板檔案即引用的模板檔案 如include的heade...
替換字串中的空格和空行
總 a.直接用string.replaceall 替換的話,會連字串裡的n,r,t等字母一起替換掉 b.所以要用正規表示式pattern和matcher類替換 如下 string sfi filter sqlutil.sqlfrommybatis sessionfactory,datasource,...