+ Reply to Thread
Results 1 to 3 of 3

Strange behavior of InStrRev() function

Hybrid View

  1. #1
    Windowed
    Guest

    Strange behavior of InStrRev() function

    I'm trying to parse a set of names in an Excel file and am getting some bad
    results from the InStrRev() function. This is my code:

    Public Sub extractLastName()

    'intRow = 10
    Dim intSpace As Integer 'number of spaces from end of whole name
    to last space
    Dim intLength As Integer

    strWholeName = Cells(intRow, intCol)

    intLength = Len(strWholeName)
    'Debug.Print intLength
    'Debug.Print strWholeName

    intSpace = InStrRev(strWholeName, " ")
    'Debug.Print intSpace

    strLastName = Right(strWholeName, intSpace)
    'Debug.Print strLastName

    End Sub

    The process works well for some names but not for others and I can't figure
    out why. (The back results below are out or 20 rows--the others were OK.)

    (Bad results examples below.) The problem arises with the InStrRev()
    function. Using a step by step debugging everything is OK except that the
    variable intSpace just comes out wrong on these cases. intLength is right as
    is strWholeName. I tried retyping one or two of the names on the possibility
    that there was some hidden character causing the problem, but that did not
    help. [space] means the function is putting an extra space in front of the
    last name that is not in the original field.


    Virginia Foper nia Foper
    Frank Paone [space]Paone
    Pat Jessupq ssup
    Barb Sorenson enson
    Darryl J. Smith l J.Smith
    David Sawinski winski
    JoePennington, III [space]Pennington, III
    Nina Flanigan nigan
    Ramona Bridgeman idgeman
    Cheryl Hodzen [space]Hodzen
    Crystal MacKenzie-Zipp zie-Zipp

  2. #2
    Tom Ogilvy
    Guest

    Re: Strange behavior of InStrRev() function

    The results you show would be what you would get if you used Instr rather
    than InstrREV

    --
    Regards,
    Tom Ogilvy

    "Windowed" <Windowed@discussions.microsoft.com> wrote in message
    news:9DF66DDE-DD16-4894-A6ED-31BF8FEE643C@microsoft.com...
    > I'm trying to parse a set of names in an Excel file and am getting some

    bad
    > results from the InStrRev() function. This is my code:
    >
    > Public Sub extractLastName()
    >
    > 'intRow = 10
    > Dim intSpace As Integer 'number of spaces from end of whole name
    > to last space
    > Dim intLength As Integer
    >
    > strWholeName = Cells(intRow, intCol)
    >
    > intLength = Len(strWholeName)
    > 'Debug.Print intLength
    > 'Debug.Print strWholeName
    >
    > intSpace = InStrRev(strWholeName, " ")
    > 'Debug.Print intSpace
    >
    > strLastName = Right(strWholeName, intSpace)
    > 'Debug.Print strLastName
    >
    > End Sub
    >
    > The process works well for some names but not for others and I can't

    figure
    > out why. (The back results below are out or 20 rows--the others were OK.)
    >
    > (Bad results examples below.) The problem arises with the InStrRev()
    > function. Using a step by step debugging everything is OK except that the
    > variable intSpace just comes out wrong on these cases. intLength is right

    as
    > is strWholeName. I tried retyping one or two of the names on the

    possibility
    > that there was some hidden character causing the problem, but that did not
    > help. [space] means the function is putting an extra space in front of the
    > last name that is not in the original field.
    >
    >
    > Virginia Foper nia Foper
    > Frank Paone [space]Paone
    > Pat Jessupq ssup
    > Barb Sorenson enson
    > Darryl J. Smith l J.Smith
    > David Sawinski winski
    > JoePennington, III [space]Pennington, III
    > Nina Flanigan nigan
    > Ramona Bridgeman idgeman
    > Cheryl Hodzen [space]Hodzen
    > Crystal MacKenzie-Zipp zie-Zipp




  3. #3
    Windowed
    Guest

    Re: Strange behavior of InStrRev() function

    Or (I just figured this out): while it is searching from the end, the value
    (intSpace) is the position relative to the beginning of the string. The
    description of InStrRev that I was reading says "the position...counting from
    the right side..." To me this means it's going to give me the number of
    spaces from the end of the string. So the "right" output I got was merely
    accidental and the wrong output was right.

    "Tom Ogilvy" wrote:

    > The results you show would be what you would get if you used Instr rather
    > than InstrREV
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "Windowed" <Windowed@discussions.microsoft.com> wrote in message
    > news:9DF66DDE-DD16-4894-A6ED-31BF8FEE643C@microsoft.com...
    > > I'm trying to parse a set of names in an Excel file and am getting some

    > bad
    > > results from the InStrRev() function. This is my code:
    > >
    > > Public Sub extractLastName()
    > >
    > > 'intRow = 10
    > > Dim intSpace As Integer 'number of spaces from end of whole name
    > > to last space
    > > Dim intLength As Integer
    > >
    > > strWholeName = Cells(intRow, intCol)
    > >
    > > intLength = Len(strWholeName)
    > > 'Debug.Print intLength
    > > 'Debug.Print strWholeName
    > >
    > > intSpace = InStrRev(strWholeName, " ")
    > > 'Debug.Print intSpace
    > >
    > > strLastName = Right(strWholeName, intSpace)
    > > 'Debug.Print strLastName
    > >
    > > End Sub
    > >
    > > The process works well for some names but not for others and I can't

    > figure
    > > out why. (The back results below are out or 20 rows--the others were OK.)
    > >
    > > (Bad results examples below.) The problem arises with the InStrRev()
    > > function. Using a step by step debugging everything is OK except that the
    > > variable intSpace just comes out wrong on these cases. intLength is right

    > as
    > > is strWholeName. I tried retyping one or two of the names on the

    > possibility
    > > that there was some hidden character causing the problem, but that did not
    > > help. [space] means the function is putting an extra space in front of the
    > > last name that is not in the original field.
    > >
    > >
    > > Virginia Foper nia Foper
    > > Frank Paone [space]Paone
    > > Pat Jessupq ssup
    > > Barb Sorenson enson
    > > Darryl J. Smith l J.Smith
    > > David Sawinski winski
    > > JoePennington, III [space]Pennington, III
    > > Nina Flanigan nigan
    > > Ramona Bridgeman idgeman
    > > Cheryl Hodzen [space]Hodzen
    > > Crystal MacKenzie-Zipp zie-Zipp

    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1