- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, could someone help me with a rule that extracts any values from a number. Example = 190386. Extracted Value =386. Thanks
Solved! Go to Solution.
Hello, could someone help me with a rule that extracts any values from a number. Example = 190386. Extracted Value =386. Thanks
Solved! Go to Solution.
try this:
Dim Example As String = "190386"
Dim startIndex As Integer = 3
Dim length As Integer = Example.Length - startIndex
MsgBox(Example.Substring(startIndex, length))
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com
This question can't be answered.
You need to specify your rules for extracting the value. Is it: