Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
218 views
in Technique[技术] by (71.8m points)

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

What will be the expression for restricting a user to enter either 5 lines or 375 characters in a scrollable text field?

I tried theese:

([A-Z])w+

$0</a>

var re,regs,val;
if(OTHER.rawValue!=null)
{
   val=OTHER.rawValue;
   //re=[a-zA-Zds-,#.+]+
   //re=/abc(?!$){5}/ 
   re=/e(w*)s/m{2,10}$;
   regs=val.match(re);
   if(!regs)
   {
     fieldname.rawValue="";
     xfa.host.messageBox("ANY THING");
     xfa.host.setFocus(fieldname)
   }
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Try this:^((.+ ){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(/^((.+
){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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...