Regex time

hi,
08/07/2022 20:21:13 ı want to using regex just time it should be output 20:21:13(that is after years when time) can u help me please?

Heyy!

Try this

System.Text.RegularExpressions.Regex.Match(Input,"\d+:\d+:\d+").ToString 

Reference;

Regards,
NaNi

When and anchored Regex is prefered we can do:
grafik

strTime =

System.Text.RegularExpressions.Regex.Match(strText,strPattern).Value

strText is your InputTextVar
strPattern = "(?<=[\d\/]{8} )[\d\:]{8}"