Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4399
    user
    Participant

    hello

    can you tell me please why this doesnt work:

    document.selection.Replace(“/”, “n”, eeFindReplaceQuiet | eeReplaceAll);

    it is supposed to replace / with n, but it works as if of the / is escape character, thus it replaces / with n

    is this a bug or I do something wrong?

    thanks

    #4404
    Michael
    Member

    Try

    document.selection.Replace(“/”, “n”, eeFindReplaceQuiet | eeReplaceAll);

    because “/” is “escape /” = “/”
    “/” is “escape /” = “/”

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.