How do I write this RegExpr?

Fred12
Fred12 New Altair Community Member
edited November 2024 in Community Q&A

hi,

I want to replace a capturing group by a regexpr... see screenshot:

regexp.PNG

 

I only want the number "1111" after it... however the name comes in differen Variations: Einzelliste_1111 with space after the number, and another time with "_" underscore after the number, and another time with a space and some Character or other numbers after it! But I only want the number after "Einzelliste_" 

 

so I thought the capturing group after "Einzelliste_(.*) should be sufficient because it should give me exactly that number with the $1... but it doesnt... why??? 

Answers

  • MartinLiebig
    MartinLiebig
    Altair Employee

    Fred,

     

    don't you want to use:

    Einzelliste_(\d+).* 

    this should capture only the digits.

     

    ~Martin