string replacement

  1. FERNANDO SILVEIRA

    Android Question Character replacement within a string

    Hello Guys, Is there a way to execute a string.replace() on a given position of the string? Let's say I have the string "FERNANDO" and want to replace the second "N" with "*" what would I do? dim wWord as string = "FERNANDO" dim wNewWord as string = wWord.replace("N", "*") log(wWord & " = " &...
Top