Match once but not repetitions [duplicate]












-1
















This question already has an answer here:




  • Regex that does not allow consecutive dots

    3 answers



  • Regex for not allowing consecutive dots or underscores

    3 answers



  • Regex for not containing consecutive characters

    3 answers




I have the following code to match:




String(s) in which . is not present consecutively, it can be alternatively







let strArr = [
'#foo3.5', // true
'#bar34..34', // false
'.', // true
'#ipv4-1.1.1.1' // true
];

const re = /^([^.]*.[^.]*)+$/;

strArr.map(
(val, idx) => console.log(`${idx}: ${re.test(val)}`)
);





But, the above code also matches #bar34..34, which is not desired. I tried changing the * meta-character in my pattern to +, but then, it fails to match . and #ipv4-1.1.1.1 strings.



Also, I want my regex to be small, because it is a part of a very long regex (you can suppose it an Email ID regex). So, what should be the required regex?










share|improve this question













marked as duplicate by Wiktor Stribiżew javascript
Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 20 '18 at 6:08


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.




















    -1
















    This question already has an answer here:




    • Regex that does not allow consecutive dots

      3 answers



    • Regex for not allowing consecutive dots or underscores

      3 answers



    • Regex for not containing consecutive characters

      3 answers




    I have the following code to match:




    String(s) in which . is not present consecutively, it can be alternatively







    let strArr = [
    '#foo3.5', // true
    '#bar34..34', // false
    '.', // true
    '#ipv4-1.1.1.1' // true
    ];

    const re = /^([^.]*.[^.]*)+$/;

    strArr.map(
    (val, idx) => console.log(`${idx}: ${re.test(val)}`)
    );





    But, the above code also matches #bar34..34, which is not desired. I tried changing the * meta-character in my pattern to +, but then, it fails to match . and #ipv4-1.1.1.1 strings.



    Also, I want my regex to be small, because it is a part of a very long regex (you can suppose it an Email ID regex). So, what should be the required regex?










    share|improve this question













    marked as duplicate by Wiktor Stribiżew javascript
    Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

    StackExchange.ready(function() {
    if (StackExchange.options.isMobile) return;

    $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
    var $hover = $(this).addClass('hover-bound'),
    $msg = $hover.siblings('.dupe-hammer-message');

    $hover.hover(
    function() {
    $hover.showInfoMessage('', {
    messageElement: $msg.clone().show(),
    transient: false,
    position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
    dismissable: false,
    relativeToBody: true
    });
    },
    function() {
    StackExchange.helpers.removeMessages();
    }
    );
    });
    });
    Nov 20 '18 at 6:08


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















      -1












      -1








      -1









      This question already has an answer here:




      • Regex that does not allow consecutive dots

        3 answers



      • Regex for not allowing consecutive dots or underscores

        3 answers



      • Regex for not containing consecutive characters

        3 answers




      I have the following code to match:




      String(s) in which . is not present consecutively, it can be alternatively







      let strArr = [
      '#foo3.5', // true
      '#bar34..34', // false
      '.', // true
      '#ipv4-1.1.1.1' // true
      ];

      const re = /^([^.]*.[^.]*)+$/;

      strArr.map(
      (val, idx) => console.log(`${idx}: ${re.test(val)}`)
      );





      But, the above code also matches #bar34..34, which is not desired. I tried changing the * meta-character in my pattern to +, but then, it fails to match . and #ipv4-1.1.1.1 strings.



      Also, I want my regex to be small, because it is a part of a very long regex (you can suppose it an Email ID regex). So, what should be the required regex?










      share|improve this question















      This question already has an answer here:




      • Regex that does not allow consecutive dots

        3 answers



      • Regex for not allowing consecutive dots or underscores

        3 answers



      • Regex for not containing consecutive characters

        3 answers




      I have the following code to match:




      String(s) in which . is not present consecutively, it can be alternatively







      let strArr = [
      '#foo3.5', // true
      '#bar34..34', // false
      '.', // true
      '#ipv4-1.1.1.1' // true
      ];

      const re = /^([^.]*.[^.]*)+$/;

      strArr.map(
      (val, idx) => console.log(`${idx}: ${re.test(val)}`)
      );





      But, the above code also matches #bar34..34, which is not desired. I tried changing the * meta-character in my pattern to +, but then, it fails to match . and #ipv4-1.1.1.1 strings.



      Also, I want my regex to be small, because it is a part of a very long regex (you can suppose it an Email ID regex). So, what should be the required regex?





      This question already has an answer here:




      • Regex that does not allow consecutive dots

        3 answers



      • Regex for not allowing consecutive dots or underscores

        3 answers



      • Regex for not containing consecutive characters

        3 answers







      let strArr = [
      '#foo3.5', // true
      '#bar34..34', // false
      '.', // true
      '#ipv4-1.1.1.1' // true
      ];

      const re = /^([^.]*.[^.]*)+$/;

      strArr.map(
      (val, idx) => console.log(`${idx}: ${re.test(val)}`)
      );





      let strArr = [
      '#foo3.5', // true
      '#bar34..34', // false
      '.', // true
      '#ipv4-1.1.1.1' // true
      ];

      const re = /^([^.]*.[^.]*)+$/;

      strArr.map(
      (val, idx) => console.log(`${idx}: ${re.test(val)}`)
      );






      javascript regex match






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 6:05









      rv7rv7

      2,2061324




      2,2061324




      marked as duplicate by Wiktor Stribiżew javascript
      Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 20 '18 at 6:08


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






      marked as duplicate by Wiktor Stribiżew javascript
      Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 20 '18 at 6:08


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


























          1 Answer
          1






          active

          oldest

          votes


















          1














          Match a whole string with no consecutive dots:



          /^(?!.*..).*$/





          share|improve this answer






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Match a whole string with no consecutive dots:



            /^(?!.*..).*$/





            share|improve this answer




























              1














              Match a whole string with no consecutive dots:



              /^(?!.*..).*$/





              share|improve this answer


























                1












                1








                1







                Match a whole string with no consecutive dots:



                /^(?!.*..).*$/





                share|improve this answer













                Match a whole string with no consecutive dots:



                /^(?!.*..).*$/






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 20 '18 at 6:07









                AmadanAmadan

                129k13140192




                129k13140192















                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    Npm cannot find a required file even through it is in the searched directory

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith