Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem with Link count
#5
Not Solved
All description properties are regular expressions by default. Your innertext property has parenthesis in it that are being treated as a regular expression capturing group instead of the literal characters. You can fix this in one of two ways. Either change the innertext property's regularExpression property to False, or escape the parenthesis to force them to be treated as literal strings.

1.
Code:
Set odesc = description.Create
odesc("micclass").value = "Link"
odesc("innertext").value = "BlueDental Care(Prepaid)"
odesc("innertext").regularExpression = False
2.
Code:
Set odesc = description.Create
odesc("micclass").value = "Link"
odesc("innertext").value = "BlueDental Care\(Prepaid\)"
Reply


Messages In This Thread
Problem with Link count - by mahadevan.swamy1 - 01-23-2011, 07:25 AM
RE: Problem with Link count - by sreekanth chilam - 01-23-2011, 10:01 PM
RE: Problem with Link count - by UFTEnthusiast - 01-24-2011, 02:25 AM
RE: Problem with Link count - by mahadevan.swamy1 - 01-24-2011, 06:06 AM
RE: Problem with Link count - by cdesserich - 01-24-2011, 09:01 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem in identifying link vijay44 2 2,051 02-09-2010, 10:08 AM
Last Post: Saket

Forum Jump:


Users browsing this thread: 1 Guest(s)