RegEx 5

Hello!
I have
fsod
897 910,00
fwefwe

I need take this: 897 910,00
I use: System.Text.RegularExpressions.Regex.Match(str,“(?<=fsod:[\r\n]+)[.,\d]+”).Value
But I have: 897

How I can change ?

Check this below code, @RPA3
StrValue = System.Text.RegularExpressions.Regex.Match(str,“[0-9\s,]+”).Value.Trim

1 Like

not work for me

Check this code, @RPA3
StrVar = System.Text.RegularExpressions.Regex.Matches(Str,“[0-9\s,]+”)(0).ToString.Trim

1 Like

not work.