I have a number of strings that represent the names of books.
Example:
Using the StringFunctions Library, I split this string and create a List.
I then convert this List to a String
This works and I get:
How could I ensure that the first letter of each word is in Uppercase - only if it is a word and not a number.
I need to change:
To:
Example:
B4X:
answers_for_dummies_101
I then convert this List to a String
B4X:
Dim BookNameList As List
Dim BookNameFinal As String
BookNameList = sf.Split(book, "_")
BookNameFinal = sf.ListToString(BookNameList, False, False)
B4X:
answers for dummies 101
I need to change:
B4X:
answers_for_dummies_101
B4X:
Answers For Dummies 101