Andres Edu
Andres Edu

Reputation: 11

How can I parse this string to get a specific value?

How can i parse this string

https://20.85.239.243:50000/b1s/v1/Orders(26)

to get the value 26 in a variable?

Upvotes: 0

Views: 67

Answers (1)

rizaldodo
rizaldodo

Reputation: 116

If the string literally like that you can use substring instead. Maybe like this :

string.Substring((string.Length-4), 2)

Or maybe you can find what you need here: https://learn.microsoft.com/en-us/dotnet/api/system.string.substring?redirectedfrom=MSDN&view=net-6.0#overloads

Upvotes: 1

Related Questions