Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2021-09-08 12:29
Flavor·PCRE2 (PHP)

/
^(?'line'public (?'type'\w+\??) (?'property'[A-z]+).*)$
/
gm
Open regex in editor

Description

Converts this: public string? PropertyA { get; set; }

To this: /// <summary> /// PropertyA /// </summary> public string? PropertyA { get; set; }

Submitted by anonymous