我必須處理管道分隔的平面文件,其中每個字段都在雙引號內。 樣本數據: "1193919"|"false"|""|"Mr. Andrew Christopher Alman"|""|""|"Mr."
我已經在我的劇本寫了很多的gawk命令。現在的問題是: 問題: 考慮該行:"1193919|false||Mr. Andrew Christopher Alman"|""|"Mr." 我的腳本走的是
我試圖符合使用GAWK以下表達式模式: static char *nm = "This is a test with many characters like [email protected]#^&";
的模式如下: 1. Line starts with static
2. 0 or more number of characters including whitespaces
3.
我有一個應該輸出文本格式此GAWK腳本GAWK行號: line 1: I am just a poor boy
line 1 reversed: boy poor a just am I
下面是腳本: BEGIN {print ""}
{
printf "Line %d: %s\n", NR, $0;
lineCount++;
for (i = NF; i