装配计数大写字母

时间:2015-07-17 09:06:19

标签: assembly counting

我想在程序集中创建一个程序,该程序从用户读取字符串字符并显示输入的大写字母数。我使用emu8086来运行汇编程序。我似乎找不到合适的程序代码。我是一个新手,我想至少理解语言是如何工作的,特别是使用的符号。我需要代表那些有价值的代码来计算大写字母。感谢。

1 个答案:

答案 0 :(得分:1)

你没有告诉我们你已经知道的事情。这是计算大写字符的基本代码。

$weight_unit = explode(" ", $title_string);
 $units = array("LITRE", "LTRS", "LTR", "LIT", "GMS", "LBS", "KG", "GM", "GR", "ML", "OZ", "LB", "G", "L");
 for ($m = 0; $m < sizeof($weight_unit); $m++) {
   foreach ($units as $unit) {
     if (preg_match('/^[0-9A-Z.]*([0-9][A-Z]|[A-Z][0-9])[0-9A-Z]*$/',
          $weight_unit[$m]) && strpos($weight_unit[$m], $unit) !== FALSE) {
          $product["weight"] = preg_replace("/[A-Za-z]/", '', $weight_unit[$m]);
          $product["unit"] = $unit;
          break;
      }
   }
 }