TOP

VBA Function: Replace

Description

The VBA REPLACE Function returns the specified number of characters from a character string starting with the defined character number.


REPLACE Syntax

Replace(text, search, replace)

Or

Replace(text, search, replace, start, limit, case)

VBA Replace Example

Perform different replacements in a given string:

  1. Sub ReplaceExample()  
  2.       
  3.      text = "www.moonexcel.com.ua"  
  4.       
  5.      'Easy replacement  
  6.      MsgBox Replace(text, "excel""sheets")    'Returns: www.moonsheets.com.ua  
  7.       
  8.      'Replacement ignoring the first characters  
  9.      MsgBox Replace(text, "excel""sheets", 5) 'Returns: moonsheets.com.ua  
  10.       
  11.      'Replacement by defining or not a limit  
  12.      MsgBox Replace(text, "e""E", 5)    'Returns: moonExcEl.com.ua  
  13.      MsgBox Replace(text, "e""E", 5, 1) 'Returns: moonExcel.com.ua  
  14.       
  15.      'Replace case sensitive or ignoring  
  16.      MsgBox Replace(text, "EXCEL""sheets")        'Returns: www.moonexcel.com.ua  
  17.      MsgBox Replace(text, "EXCEL""sheets", , , 1) 'Returns: www.moonsheets.com.ua  
  18.       
  19. End Sub