Being a complete "regex illiterate" I'd like suggestions on how to capitalize a string, something like
where:
source is any string containing numbers, commas, $, (, - etc...
and delimiters is a string of characters delimiting words e.g: - /()| ?$%0123456789
will return: "This Is Worth 50$Of Dead-Junk""
B4X:
result=Capitalize(source,delimiters)
where:
source is any string containing numbers, commas, $, (, - etc...
and delimiters is a string of characters delimiting words e.g: - /()| ?$%0123456789
B4X:
s="this is worth 50$of dead-junk"
s2=Capitalize(s,"01234567890 $-")