Expression or reg-ex for java script or adobe livecycle tools

隐身守侯 提交于 2019-11-28 14:24:27

Try this:^((.+\n){0,4}.+|.{1,375})$

$(document).ready(function() {

  $("#text_string").focusout(function() {
    var res, text_string = $("#text_string").val();
    if (text_string != null) {

      res = text_string.match(/^((.+\n){0,4}.+|.{1,375})$/);
      console.log(res);
      if (!res) {
        $("#text_string").val("");
      }
    }
  });

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<textarea name="" id="text_string" cols="30" rows="10"></textarea>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!