Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #4403
    user
    Participant

    can you tell me please why this doesnt work

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

    it should replace . + space with . + ENTER

    but it does nothing

    #4405
    Michael
    Member

    Do not forget about

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

    #4406
    user
    Participant

    thanks, but why do I need to put two times the escape character ?

    #4411
    Michael
    Member

    char “” is escape char in all programming languages.

    n – new line
    t – tab
    ” – “
    ‘ – ‘

    etc.

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