About 6,070,000 results
Open links in new tab
  1. How do i repeat regex - Stack Overflow

    May 12, 2016 · Suspiciously, you have quantifiers and a group in the regex, yet you still ask if there is a way to quantify that block 3 times. You'd think this is a question that would come up …

  2. How can I capture multiple repeated groups? - Stack Overflow

    With one group in the pattern, you can only get one exact result in that group. If your capture group gets repeated by the pattern (you used the + quantifier on the surrounding non …

  3. java - How to match repeated patterns? - Stack Overflow

    Jan 20, 2011 · 42 I would like to match: some.name.separated.by.dots But I don't have any idea how. I can match a single part like this \w+\. How can I say "repeat that" java regex edited Jan …

  4. Regex to match X repeated exactly n times in a row

    Feb 17, 2022 · 6 I am attempting to use regex to match a pattern where we have some X (any character) which occurs exactly n many times in succession. I know a little about regex, but …

  5. Regular expression for repeating sequence - Stack Overflow

    Dec 15, 2011 · To just repeat a sequence of patterns, you need to use a non-capturing group, a (?:...) like contruct, and apply a quantifier right after the closing parenthesis.

  6. Help - Best way to repeat a sketched pattern for future extrusion

    Apr 10, 2018 · As you can see the part is made up of a series of the same repeating pattern. I created a sketch of the base pattern and want to repeat that pattern thereby extending my …

  7. How to represent a fix number of repeats in regular expression?

    Jun 25, 2014 · The finite repetition syntax uses {m,n} in place of star/plus/question mark. From java.util.regex.Pattern: X{n} X, exactly n times X{n,} X, at least n times X{n,m} X, at least n but …

  8. How to check if string has repeating pattern? - Stack Overflow

    Apr 30, 2019 · I was recently asked this in an interview question: Given a input string check if it has repeating pattern and return true or false. For example: "abbaabbaabbaabba" is a …

  9. Solved: For grille holes, how to repeat the same shape over on a ...

    Dec 27, 2017 · For grille holes, how to repeat the same shape over on a surface as a pattern? Anonymous Not applicable 12-26-201705:29 PM Hi, Brand new to Fusion. I'm using the …

  10. Regular Expression Repeating Pattern separated by comma

    Jan 7, 2014 · Regular Expression Repeating Pattern separated by comma Asked 11 years, 7 months ago Modified 11 years, 7 months ago Viewed 9k times