<tfoot id='d3ha4'></tfoot><legend id='d3ha4'><style id='d3ha4'><dir id='d3ha4'><q id='d3ha4'></q></dir></style></legend>
    <i id='d3ha4'><tr id='d3ha4'><dt id='d3ha4'><q id='d3ha4'><span id='d3ha4'><b id='d3ha4'><form id='d3ha4'><ins id='d3ha4'></ins><ul id='d3ha4'></ul><sub id='d3ha4'></sub></form><legend id='d3ha4'></legend><bdo id='d3ha4'><pre id='d3ha4'><center id='d3ha4'></center></pre></bdo></b><th id='d3ha4'></th></span></q></dt></tr></i><div id='d3ha4'><tfoot id='d3ha4'></tfoot><dl id='d3ha4'><fieldset id='d3ha4'></fieldset></dl></div>

    <small id='d3ha4'></small><noframes id='d3ha4'>

      • <bdo id='d3ha4'></bdo><ul id='d3ha4'></ul>

        创建匹配数字范围的正则表达式的函数

        Function To Create Regex Matching a Number Range(创建匹配数字范围的正则表达式的函数)
        <i id='VvaXf'><tr id='VvaXf'><dt id='VvaXf'><q id='VvaXf'><span id='VvaXf'><b id='VvaXf'><form id='VvaXf'><ins id='VvaXf'></ins><ul id='VvaXf'></ul><sub id='VvaXf'></sub></form><legend id='VvaXf'></legend><bdo id='VvaXf'><pre id='VvaXf'><center id='VvaXf'></center></pre></bdo></b><th id='VvaXf'></th></span></q></dt></tr></i><div id='VvaXf'><tfoot id='VvaXf'></tfoot><dl id='VvaXf'><fieldset id='VvaXf'></fieldset></dl></div>
      1. <small id='VvaXf'></small><noframes id='VvaXf'>

              <bdo id='VvaXf'></bdo><ul id='VvaXf'></ul>

              <legend id='VvaXf'><style id='VvaXf'><dir id='VvaXf'><q id='VvaXf'></q></dir></style></legend>

                1. <tfoot id='VvaXf'></tfoot>
                    <tbody id='VvaXf'></tbody>
                  本文介绍了创建匹配数字范围的正则表达式的函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 Amazon Mechanical Turk API,它只允许我使用正则表达式来过滤数据字段.

                  I am working with the Amazon Mechanical Turk API and it will only allow me to use regular expressions to filter a field of data.

                  我想向函数输入一个整数范围,例如 256-311 或 45-1233,并返回一个仅匹配该范围的正则表达式.

                  I would like to input an integer range to a function, such as 256-311 or 45-1233, and return a regex that would match only that range.

                  匹配 256-321 的正则表达式将是:

                  A regex matching 256-321 would be:

                  ((25[6-9])|(2[6-9][0-9])|(3[0-1][0-9])|(32[0-1]))
                  

                  这部分相当简单,但我在创建这个正则表达式的循环时遇到了麻烦.

                  That part is fairly easy, but I am having trouble with the loop to create this regex.

                  我正在尝试构建一个这样定义的函数:

                  I am trying to build a function defined like this:

                  function getRangeRegex( int fromInt, int toInt)
                  {
                  
                        return regexString;
                  }
                  

                  我浏览了整个网络,我很惊讶过去似乎没有人解决过这个问题.这是一个难题……

                  I looked all over the web and I am surprised that it doesn't look like anyone has solved this in the past. It is a difficult problem...

                  感谢您的宝贵时间.

                  推荐答案

                  这里有一个快速破解:

                  <?php
                  
                  function regex_range($from, $to) {
                  
                    if($from < 0 || $to < 0) {
                      throw new Exception("Negative values not supported"); 
                    }
                  
                    if($from > $to) {
                      throw new Exception("Invalid range $from..$to, from > to"); 
                    }
                  
                    $ranges = array($from);
                    $increment = 1;
                    $next = $from;
                    $higher = true;
                  
                    while(true) {
                  
                      $next += $increment;
                  
                      if($next + $increment > $to) {
                        if($next <= $to) {
                          $ranges[] = $next;
                        }
                        $increment /= 10;
                        $higher = false;
                      }
                      else if($next % ($increment*10) === 0) {
                        $ranges[] = $next;
                        $increment = $higher ? $increment*10 : $increment/10;
                      }
                  
                      if(!$higher && $increment < 10) {
                        break;
                      }
                    }
                  
                    $ranges[] = $to + 1;
                  
                    $regex = '/^(?:';
                  
                    for($i = 0; $i < sizeof($ranges) - 1; $i++) {
                      $str_from = (string)($ranges[$i]);
                      $str_to = (string)($ranges[$i + 1] - 1);
                  
                      for($j = 0; $j < strlen($str_from); $j++) {
                        if($str_from[$j] == $str_to[$j]) {
                          $regex .= $str_from[$j];
                        }
                        else {
                          $regex .= "[" . $str_from[$j] . "-" . $str_to[$j] . "]";
                        }
                      }
                      $regex .= "|";
                    }
                  
                    return substr($regex, 0, strlen($regex)-1) . ')$/';
                  }
                  
                  function test($from, $to) {
                    try {
                      printf("%-10s %s
                  ", $from . '-' . $to, regex_range($from, $to));
                    } catch (Exception $e) {
                      echo $e->getMessage() . "
                  ";
                    }
                  }
                  
                  test(2, 8);
                  test(5, 35);
                  test(5, 100);
                  test(12, 1234);
                  test(123, 123);
                  test(256, 321);
                  test(256, 257);
                  test(180, 195);
                  test(2,1);
                  test(-2,4);
                  
                  ?>
                  

                  产生:

                  2-8        /^(?:[2-7]|8)$/
                  5-35       /^(?:[5-9]|[1-2][0-9]|3[0-5])$/
                  5-100      /^(?:[5-9]|[1-9][0-9]|100)$/
                  12-1234    /^(?:1[2-9]|[2-9][0-9]|[1-9][0-9][0-9]|1[0-2][0-3][0-4])$/
                  123-123    /^(?:123)$/
                  256-321    /^(?:25[6-9]|2[6-9][0-9]|3[0-2][0-1])$/
                  256-257    /^(?:256|257)$/
                  180-195    /^(?:18[0-9]|19[0-5])$/
                  Invalid range 2..1, from > to
                  Negative values not supported
                  

                  未经适当测试,使用风险自负!

                  Not properly tested, use at your own risk!

                  是的,生成的正则表达式在许多情况下可以写得更紧凑,但我把它留给读者作为练习:)

                  And yes, the generated regex could be written more compact in many cases, but I leave that as an exercise for the reader :)

                  这篇关于创建匹配数字范围的正则表达式的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                  • <bdo id='AJ2Mg'></bdo><ul id='AJ2Mg'></ul>
                      <tbody id='AJ2Mg'></tbody>

                    <small id='AJ2Mg'></small><noframes id='AJ2Mg'>

                      <i id='AJ2Mg'><tr id='AJ2Mg'><dt id='AJ2Mg'><q id='AJ2Mg'><span id='AJ2Mg'><b id='AJ2Mg'><form id='AJ2Mg'><ins id='AJ2Mg'></ins><ul id='AJ2Mg'></ul><sub id='AJ2Mg'></sub></form><legend id='AJ2Mg'></legend><bdo id='AJ2Mg'><pre id='AJ2Mg'><center id='AJ2Mg'></center></pre></bdo></b><th id='AJ2Mg'></th></span></q></dt></tr></i><div id='AJ2Mg'><tfoot id='AJ2Mg'></tfoot><dl id='AJ2Mg'><fieldset id='AJ2Mg'></fieldset></dl></div>

                          <tfoot id='AJ2Mg'></tfoot><legend id='AJ2Mg'><style id='AJ2Mg'><dir id='AJ2Mg'><q id='AJ2Mg'></q></dir></style></legend>