|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
modify a String based upon textbox value
Hello,
Can someone please help to modify my string from the input value in my inputbox!? Example from my input box: - c:\test\att beställa.txt (swedish character) This is what I need: - c:\test\att_bestalla.txt I need to replace the "space" with "_" and replace the swedish character "ä" with "a" Can you please paste some example code so I can adjust it for my need's !!?? Thanks // Nils news wrote:
Show quote > Hello, inputbox = replace(inputbox," ","_")> Can someone please help to modify my string from the input value in my > inputbox!? > > Example from my input box: > - c:\test\att beställa.txt (swedish character) > > This is what I need: > - c:\test\att_bestalla.txt > I need to replace the "space" with "_" and replace the swedish character "ä" > with "a" > > Can you please paste some example code so I can adjust it for my need's !!?? > > Thanks // Nils inputbox = replace(inputbox,"ä","a") -- Mike Brind |
|||||||||||||||||||||||