Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Find number in a string
#9
Solved: 10 Years, 9 Months, 4 Weeks ago
Code:
Dim regEx: Set regEx = New RegExp
regEx.Pattern = "(?:código )(\d+)"
MsgBox regEx.Execute("this is código 86 testing numeric").Item(0).SubMatches.Item(0)

(?: ) is a non-capturing group, so you are assured the digits will end up in the first SubMatch of the SubMatches collection. If you want to break the code down a little further:

Code:
Dim txtstrng: txtstrng = "this is código 86 testing numeric"

Dim regEx: Set regEx = New RegExp
regEx.Pattern = "(?:código )(\d+)"

Dim regExMatches: Set regExMatches = regEx.Execute(txtstrng)

For i = 0 To regExMatches.Count-1
    MsgBox "código match number " & i & ": " & regExMatches.Item(i).SubMatches.Item(0)
Next

This will iterate through each match if there are more than one.
Reply


Messages In This Thread
Find number in a string - by pjeigenn - 07-17-2010, 12:19 AM
RE: Find number in a string - by MVChowdary - 07-19-2010, 10:40 AM
RE: Find number in a string - by Arun Prakash - 07-19-2010, 12:32 PM
RE: Find number in a string - by pjeigenn - 07-21-2010, 12:07 AM
RE: Find number in a string - by basanth27 - 07-22-2010, 08:39 AM
RE: Find number in a string - by pjeigenn - 07-26-2010, 09:16 PM
RE: Find number in a string - by supputuri - 07-26-2010, 10:04 PM
RE: Find number in a string - by ngocvo3103 - 12-02-2010, 12:40 PM
RE: Find number in a string - by cdesserich - 12-02-2010, 01:32 PM
RE: Find number in a string - by bfakruddin - 12-03-2010, 04:26 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  VB Script:number of times a character appears in a string with position Jyobtech 1 11,797 08-07-2013, 01:03 PM
Last Post: anil2u
  Find capital letter in a string Arul 2 8,385 12-27-2011, 11:11 PM
Last Post: Arul
  How to have a variable that has a string comma string .. shareq1310 5 4,810 11-09-2011, 03:33 PM
Last Post: parminderdhiman84
  How to count a repeated number in number in particular range gollsrin 1 3,441 04-28-2011, 11:41 AM
Last Post: Saket
  Removing commas from a string and changing it to number indranilgoswamimcb 3 8,404 12-31-2010, 10:40 AM
Last Post: rajeshwar

Forum Jump:


Users browsing this thread: 1 Guest(s)