当字符串后的数字大于特定数字时,打印下两行

时间:2018-11-09 01:16:32

标签: bash shell unix

让我们说

  • 如果我每小时赚8美元
  • 我将它用作食物
  • 和租金
  • 如果我每小时赚10美元,
  • 我将其用作食物,出租
  • 和气
  • 如果我每小时赚12美元,
  • 我将它用作食物
  • 和学费”

如果单词“ make”后面的数字大于9,我想打印下一行。 在我的情况下,答案将是:  -我会用它来吃饭,租房  -和气  -我会用它来做饭  -和学费 有人可以帮我吗?

3 个答案:

答案 0 :(得分:1)

使用Bash,如果您将文本放在名为text的变量中

text="if i make 8 dollars an hour
i will use it for food
and rent
if i make 10 dollars an hour,
i will use it for food, rent
and gas
if i make 12 dollars an hour,
i will use it for food
and tuition"

然后,您可以使用sed和awk像这样一线完成

IFS=";";for i in `echo $text | tr "\n" "-" | sed 's,if i make,\;,g'`;do line=`echo "$i" | sed 's,^[ \t],,g'`; num=`echo $line | awk -F ' ' '{print $1}'`; if [[ $num -gt 9 ]];then printf '%s' $(echo $line | awk -F 'hour,-' '{print $2}');fi;done;echo

我们要做的是

for i in `echo $text | tr "\n" "-" | sed 's,if i make,\;,g'`

用'if i make'分割字符串并循环遍历并做

line=`echo "$i" | sed 's,^[ \t],,g'`

然后要删除任何尾随空格

num=`echo $line | awk -F ' ' '{print $1}'`

要从行中获取号码,然后

if [[ $num -gt 9 ]];then printf '%s' $(echo $line | awk -F 'hour,-' '{print $2}');fi

如果数字大于9,则打印“小时,-”后的内容

答案 1 :(得分:0)

您基本上想检查字符串并在make之后获得数字。您要做的是拥有String message = "If I make 100...",然后您会说

//Divide the string into words by taking out the spaces and then store the words in an array. 
String[] words = message.split(" ");

//All of your numbers were the fourth word so the code below will
//parse the fourth position in the array and make it an integer. 
int hourly_pay = Integer.parseInt(words[3]);

现在hourly_pay将是单词“ make”之后的数字。因此,您现在要做的就是检查它是否大于9,如下所示:

if(hourly_pay > 9){
    //Print whatever you want.
}else{
    //Whatever. 
}

答案 2 :(得分:0)

使用Perl一个衬纸

SELECT e.idetape,
       e.idprojet,
       e.datedebut,
       e.datefin,
       p.datedebut AS projet_datedebut,
       p.datefin   AS projet_datefin
FROM   EtapexProjet AS e
       JOIN Projet AS p
         ON p.idprojet = e.idprojet
            AND e.datedebut >= p.datedebut 
            AND (e.datefin <= p.datefin OR 
                 p.datefin IS NULL OR 
                 e.datefin IS NULL
                )
ORDER  BY e.idprojet, 
          e.idetape;