Generate RegEx from matches

前端 未结 2 1380
情书的邮戳
情书的邮戳 2020-12-20 02:24

I want to generate RegEx Pattern from a given matches
for example i want to get \\d+<\\b> from the following array of matches

&

2条回答
  •  情书的邮戳
    2020-12-20 02:41

    Tool

    From an answer to a similar question, the link below may help you:

    txt2re: Online regular expression generator.

    Understanding

    If you search for deeper understanding of the topic instead of a quick solution, you should read answers to following question: Is it possible for a computer to “learn” a regular expression by user-provided examples?

    Coding

    If you want to code a quick solution yourself, this answer worths to look.

    Note

    As indicated with the meaningful joke, don't forget that computers cannot read your mind, and several different regexes can be generated for the same input.

提交回复
热议问题