- 论坛徽章:
- 0
|
在網上抓到的有幾個 printf 小技巧,POSIX 兼容的應可使用
第一個以前說過了, 格式化成這樣可在每三個數字加,
[victor@localhost ~]$ printf "%'d\n" 1234567
1,234,567
[victor@localhost ~]$
但在cygwin 下的bash 用不到,原因不明。只好用以下腳本代替,可不是我寫的
#!/bin/bash
NumberIn=$1
NumberLength=${#NumberIn}
NumberOut=""
Count=0
for (( i= $NumberLength - 1; i >= 0 ; i-- )) ; do
if [ $Count -ne 0 ] && [ $(($Count % 3)) -eq 0 ] ; then
NumberOut=","$NumberOut ; fi
NumberOut=${NumberIn i:1}$NumberOut
(( Count += 1 ))
done
echo $NumberOut
exit 0
在很多的語言下,都可以將子母取得 十進制的 ascii 編碼,如 ruby
[victor@localhost ~]$ ruby -e 'puts ?a'
97
在 shell 下可用外部程式幫忙,如
[victor@localhost ~]$ echo "a" | od -An -tu1 | awk '{print $1}'
97
但其實 printf 也可取得
[victor@localhost ~]$ printf '%d\n' "'a"
97
[victor@localhost ~]$
只要以十進制整數格式打印 . '%d\n' , 配合 "'字母" 就成。
第三個是 printf 可用打印空格, 以如下格式
printf '%*s\n' 數字, 數字是整數, 如
[victor@localhost ~]$ printf '%*s\n' 20 | tr ' ' '#'
####################
[victor@localhost ~]$ printf '%*s\n' 30 | tr ' ' '#'
##############################
[victor@localhost ~]$
為了顯示,將空格換成 #
歡迎交流,有錯請指正,謝謝 。 |
|