A
Ahmad Azizan
Hello,
I've encountered a problem to replace a very long string with gsub.
The string length is around 80,000.
As example,
data contains string with length 80,000
lala = "Replaced string"
input = input.gsub(data, lala)
Is there any other method for that string replacement like in this case
beside using gsub?
I've encountered a problem to replace a very long string with gsub.
The string length is around 80,000.
As example,
data contains string with length 80,000
lala = "Replaced string"
input = input.gsub(data, lala)
Is there any other method for that string replacement like in this case
beside using gsub?