sakura/en/Replace (Execute)

Last-modified: 2008-03-29 (土) 14:43:56

Replace (Execute)

The character string is substituted.
In the replace dialog the operation when the [ Replace ] button is pushed.

Macro Syntax

  • Syntax
    Replace( str1 :String , str2 :String , int3 :Integer );
    • str1 : Search string
    • str2 : Replace string
    • int3 : Replace option (Optional)
  • Record
    It records by [ substitution ] execution of Replace .
  • Remarks
    The combination of the following values can be specified for the substitution option.
    • 0x001 : It looks for wording.
    • 0x002 : The English capital letter and the small letter are distinguished.
    • 0x004 : Regular expression
    • 0x008 : When not found, the message is displayed.
    • 0x010 : The substitution dialog is automatically shut.
    • 0x020 : It retrieves it from the head (end) again.
    • 0x040 : It puts it from the clipboard.
      [Replace Range]
    • 0x000 : Entire file (regulated value when omitting it)
    • 0x080 : Range of selection
      [Replace target]
    • 0x000 : Found character string and substitution (regulated value when omitting it)
    • 0x100 : It inserts it ahead of the found character string.
    • 0x200 : It adds it after the found character string.

[tip] Note: In key macro Only the constant mark of the decimal number is accepted.
Please mend and describe the option in the decimal number.