StartsWith in Switch Activity

Hi,
I’m stuck on a Switch Expression. I want to use a switch based on the first letter in the string “textInDagbokField”.

How do i write the Expression?

I’ve tried to read other topics, but I’m not able to use that information to solve my case.

image

store your data in one variable and do substring and take only first letter and pass in switch.

Thanks and Regards,
Parvati

Hi,

Hope the following expression helps you.

System.Text.RegularExpressions.Regex.Match(textInDagbokField,"^\*?[A-Z]{3}").Value

img20200219-2

Regards,

1 Like

If it is really the first 3, but in your cases you have 4…
Expression = textInDagbokField.SubString(0,3)

Works! thank you

1 Like