Regex - returning overlapping matches

danbroooks

How do I change this regular expression:

(`)([^`]+)`|(\*)([^*]+)\*

To give an output like this:

` | hel*low
* | low`orld
* | hello
` | world

When passed:

"`hel*low`orld* *hello* `world`"

http://regex101.com/r/aV5bG0

Casimir et Hippolyte

You can use this pattern:

(?=([`*])((?>[^`*\W]++|(?!\1)[`*])+)\1)

or this pattern:

(?=([`*])((?:[^`*\W]+|(?!\1)[`*])+)\1)

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Regex matches incorrect value

분류에서Dev

RegEx Return All Matches

분류에서Dev

regex to find the longest of matches

분류에서Dev

regex to find the longest of matches

분류에서Dev

regex return array of matches

분류에서Dev

regex.matches notmatching

분류에서Dev

Splitting regex matches by newlines in perl

분류에서Dev

Generate histogram from regex matches

분류에서Dev

Python Regex - search and replace matches

분류에서Dev

How to grab all regex matches in php?

분류에서Dev

How to create regex that matches only not spaces and not letters?

분류에서Dev

regex to search for a string that matches almost anything except a |

분류에서Dev

Search: Add when matches regex (with or without space)

분류에서Dev

Using regex in Find/Replace to replace multiple matches

분류에서Dev

regex scan only returning first value

분류에서Dev

Powershell regex Matches[0].Groups vs Matches.Groups key name based indexing

분류에서Dev

How to return/print matches on a string in RegEx in Flutter/Dart?

분류에서Dev

Java Regex match anything that matches given pattern and is not between a given character

분류에서Dev

How can I open the file with the most matches for a given regex?

분류에서Dev

Non-greedy nginx location regex returning a 404 error

분류에서Dev

Regex의 Matches 기능이 왜 그렇게 빠른가요?

분류에서Dev

Why won't this Regex match in C# console, but yet matches in http://gskinner.com/RegExr/

분류에서Dev

Java RegEx Split Matches 및 후행 문자 포함

분류에서Dev

Java regex pattern matches a string when i obtain string from System.in but not when declared

분류에서Dev

How do I copy regex matches from a file? Need to get all MAC addresses from log file

분류에서Dev

regex.matches 메서드가 일치하고 잘못 계산됩니다.

분류에서Dev

Overlapping module imports in Racket

분류에서Dev

header overlapping when minimized

분류에서Dev

How to fix Div overlapping?

Related 관련 기사

  1. 1

    Regex matches incorrect value

  2. 2

    RegEx Return All Matches

  3. 3

    regex to find the longest of matches

  4. 4

    regex to find the longest of matches

  5. 5

    regex return array of matches

  6. 6

    regex.matches notmatching

  7. 7

    Splitting regex matches by newlines in perl

  8. 8

    Generate histogram from regex matches

  9. 9

    Python Regex - search and replace matches

  10. 10

    How to grab all regex matches in php?

  11. 11

    How to create regex that matches only not spaces and not letters?

  12. 12

    regex to search for a string that matches almost anything except a |

  13. 13

    Search: Add when matches regex (with or without space)

  14. 14

    Using regex in Find/Replace to replace multiple matches

  15. 15

    regex scan only returning first value

  16. 16

    Powershell regex Matches[0].Groups vs Matches.Groups key name based indexing

  17. 17

    How to return/print matches on a string in RegEx in Flutter/Dart?

  18. 18

    Java Regex match anything that matches given pattern and is not between a given character

  19. 19

    How can I open the file with the most matches for a given regex?

  20. 20

    Non-greedy nginx location regex returning a 404 error

  21. 21

    Regex의 Matches 기능이 왜 그렇게 빠른가요?

  22. 22

    Why won't this Regex match in C# console, but yet matches in http://gskinner.com/RegExr/

  23. 23

    Java RegEx Split Matches 및 후행 문자 포함

  24. 24

    Java regex pattern matches a string when i obtain string from System.in but not when declared

  25. 25

    How do I copy regex matches from a file? Need to get all MAC addresses from log file

  26. 26

    regex.matches 메서드가 일치하고 잘못 계산됩니다.

  27. 27

    Overlapping module imports in Racket

  28. 28

    header overlapping when minimized

  29. 29

    How to fix Div overlapping?

뜨겁다태그

보관