How to capture repeated occurrence using python 3 regex The Next CEO of Stack OverflowQuestions about using Regex Search & Replace in geditPython: Regex filter ids divisible by 3Extracting specific data in a file using regexUsing grep with regexHow I can install regex package for python 3.4 without errors?How do I determine which version of Python I'm using?Rename file using regex (Linux Command line)Rename file using regexHow to filter a regex (exclude special characters)RegEx - How to extract second matches using grep

"misplaced omit" error when >centering columns

How to get from Geneva Airport to Metabief?

Method for adding error messages to a dictionary given a key

Axiom Schema vs Axiom

How to avoid supervisors with prejudiced views?

What does "Its cash flow is deeply negative" mean?

RigExpert AA-35 - Interpreting The Information

Dominated convergence theorem - what sequence?

Won the lottery - how do I keep the money?

WOW air has ceased operation, can I get my tickets refunded?

Which one is the true statement?

Is a distribution that is normal, but highly skewed considered Gaussian?

What connection does MS Office have to Netscape Navigator?

Can we say or write : "No, it'sn't"?

How to count occurrences of text in a file?

If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?

Is it professional to write unrelated content in an almost-empty email?

What was the first Unix version to run on a microcomputer?

Rotate a column

Why doesn't UK go for the same deal Japan has with EU to resolve Brexit?

Do I need to write [sic] when a number is less than 10 but isn't written out?

Is wanting to ask what to write an indication that you need to change your story?

What is the value of α and β in a triangle?

Is there always a complete, orthogonal set of unitary matrices?



How to capture repeated occurrence using python 3 regex



The Next CEO of Stack OverflowQuestions about using Regex Search & Replace in geditPython: Regex filter ids divisible by 3Extracting specific data in a file using regexUsing grep with regexHow I can install regex package for python 3.4 without errors?How do I determine which version of Python I'm using?Rename file using regex (Linux Command line)Rename file using regexHow to filter a regex (exclude special characters)RegEx - How to extract second matches using grep










0















Consider sentence : W U T Sample A B C D



I'm trying to use re.groups after re.search to fetch A, B, C, D (letters in caps after 'Sample'). There could be variable number of letters



Few unsuccessful attempts :



A = re.search('Samples([A-Z])s*([A-Z])*', 'W U T Sample A B C D')
A.groups()
('A', 'B')

A = re.search('Samples([A-Z])(s*([A-Z]))*', 'W U T Sample A B C D')
A.groups()
('A', ' D', 'D')

A = re.search('Samples([A-Z])(?:s*([A-Z]))*', 'W U T Sample A B C D')
A.groups()
('A', 'D')


I'm expecting A.groups() to give ('A', 'B', 'C', 'D')



Taking another example, 'XSS 55 D W Sample R G Y BH'
should give the output ('R', 'G', 'Y', 'B', 'H')



Any help much appreciated.









share


























    0















    Consider sentence : W U T Sample A B C D



    I'm trying to use re.groups after re.search to fetch A, B, C, D (letters in caps after 'Sample'). There could be variable number of letters



    Few unsuccessful attempts :



    A = re.search('Samples([A-Z])s*([A-Z])*', 'W U T Sample A B C D')
    A.groups()
    ('A', 'B')

    A = re.search('Samples([A-Z])(s*([A-Z]))*', 'W U T Sample A B C D')
    A.groups()
    ('A', ' D', 'D')

    A = re.search('Samples([A-Z])(?:s*([A-Z]))*', 'W U T Sample A B C D')
    A.groups()
    ('A', 'D')


    I'm expecting A.groups() to give ('A', 'B', 'C', 'D')



    Taking another example, 'XSS 55 D W Sample R G Y BH'
    should give the output ('R', 'G', 'Y', 'B', 'H')



    Any help much appreciated.









    share
























      0












      0








      0








      Consider sentence : W U T Sample A B C D



      I'm trying to use re.groups after re.search to fetch A, B, C, D (letters in caps after 'Sample'). There could be variable number of letters



      Few unsuccessful attempts :



      A = re.search('Samples([A-Z])s*([A-Z])*', 'W U T Sample A B C D')
      A.groups()
      ('A', 'B')

      A = re.search('Samples([A-Z])(s*([A-Z]))*', 'W U T Sample A B C D')
      A.groups()
      ('A', ' D', 'D')

      A = re.search('Samples([A-Z])(?:s*([A-Z]))*', 'W U T Sample A B C D')
      A.groups()
      ('A', 'D')


      I'm expecting A.groups() to give ('A', 'B', 'C', 'D')



      Taking another example, 'XSS 55 D W Sample R G Y BH'
      should give the output ('R', 'G', 'Y', 'B', 'H')



      Any help much appreciated.









      share














      Consider sentence : W U T Sample A B C D



      I'm trying to use re.groups after re.search to fetch A, B, C, D (letters in caps after 'Sample'). There could be variable number of letters



      Few unsuccessful attempts :



      A = re.search('Samples([A-Z])s*([A-Z])*', 'W U T Sample A B C D')
      A.groups()
      ('A', 'B')

      A = re.search('Samples([A-Z])(s*([A-Z]))*', 'W U T Sample A B C D')
      A.groups()
      ('A', ' D', 'D')

      A = re.search('Samples([A-Z])(?:s*([A-Z]))*', 'W U T Sample A B C D')
      A.groups()
      ('A', 'D')


      I'm expecting A.groups() to give ('A', 'B', 'C', 'D')



      Taking another example, 'XSS 55 D W Sample R G Y BH'
      should give the output ('R', 'G', 'Y', 'B', 'H')



      Any help much appreciated.







      python3 regex





      share












      share










      share



      share










      asked 8 mins ago









      abhivijabhivij

      1016




      1016




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1130038%2fhow-to-capture-repeated-occurrence-using-python-3-regex%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1130038%2fhow-to-capture-repeated-occurrence-using-python-3-regex%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

          Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

          Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»