请教awk 中substr()函数用法 { revline = "" for (i=1;i<=length;i++) { revline = substr($0,i,1) revline } } END{print revline} 不知道,substr是如何用的,请指教,谢谢 |
请教awk 中substr()函数用法 substr(s,i,n) substr(s,i) Returns the substring of string s, starting at index i, of length n. If n is omitted, the suffix of s, starting at i is returned. |
请教awk 中substr()函数用法 view example below: $echo "123456789" | awk '{print substr($0, 5, 2)}' 56 |
请教awk 中substr()函数用法 --> 看看置顶帖子先,里面有很多学习资料 ! [code]substr(string,position,len) 返回string的一个以position开始len个字符的子串[/code] |