Hi @MONALI_BHALERAO, use the assign activity, like you did for the other values above and write for value : System.Text.RegularExpressions.Regex.Match(myStringVal,“((?<=Number.).*)”).Value
Don’t forget to replace “myStringVal” with your variable Name. You will get the output “92195973\r\nStatus:Processed”.
Now use another assign activity to split only the numbers out of the string and type in the value field: System.Text.RegularExpressions.Regex.Replace(yourString,“\D”,“”) The Output should now be “92195973”.
For further informations check these posts: Split specifc text - #8 by Arunachalam, Splitting House Numbers with letters - #2 by c.ciprian
Hope this helps!