Match any word ending in something (regex)

spiros

  • Administrator
  • Hero Member
  • *****
    • Posts: 854546
    • Gender:Male
  • point d’amour
Match any word ending in something (regex)

This will match any word ending in ing
Code: [Select]
\b\p{L}*ing\b
\p{L} is for matching Unicode characters

c# - Regex: match word that ends with "Id" - Stack Overflow
« Last Edit: 01 Feb, 2021, 16:17:16 by spiros »


 

Search Tools