extracting letters from words with variable length and adding a string to the extracted letters

bharath235

New Member
Joined
Sep 24, 2017
Messages
24
for example: can a word in a cell "star" be extracted into another cell as "s.mp3,t.mp3,a.mp3,r.mp3"? the words can be a of varied length ..
the final output can be concatenated .. but the issue is that the words can be of any length .. example - "ant" or "butterfly" or "enlightenment" .. i reckon a loop needs to be created using vba .. could some one please help me out? thanks
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Check the below code I've prepared. Just paste it into vba module and you can then use LettersFromWords function in your workbook.

Code:
Function LettersFromWords(strWord As String)
  
  LettersFromWords = vbNullString
  
  For i = 1 To Len(strWord)
    LettersFromWords = LettersFromWords & Mid(strWord, i, 1) & ".mp3;"
  Next i

End Function
 
Upvote 0
@RatExcel that was superb .. thank you ..

i am trying to build a JSON ..

the requirement is as follows:

for example the word "flap" will need to be extracted as follows:

"app/assets/audio/f.mp3",
"app/assets/audio/l.mp3",
"app/assets/audio/a.mp3",
"app/assets/audio/p.mp3"

The last instance without a comma ...

<colgroup><col></colgroup><tbody>
</tbody>

I am going to tweak what you have prepared, however, i am a novice in VBA.. your help is much appreciated .. thx
 
Upvote 0
@RatExcel

I thin this works



Function LettersFromWords(strWord As String)

LettersFromWords = vbNullString

For I = 1 To Len(strWord)
LettersFromWords = LettersFromWords & Chr(34) & "app/assets/audio/" & Mid(strWord, I, 1) & ".mp3" & Chr(34) & "," & Chr(10)
Next I


End Function

except for the comma that comes by default .. the comma should not come for the last instance .. is that possible? Thx
 
Upvote 0
Check the below code I've prepared. Just paste it into vba module and you can then use LettersFromWords function in your workbook.

Code:
Function LettersFromWords(strWord As String)
  
  LettersFromWords = vbNullString
  
  For i = 1 To Len(strWord)
    LettersFromWords = LettersFromWords & Mid(strWord, i, 1) & ".mp3;"
  Next i

End Function
The above function can be written without loops as a one-liner...
Code:
[table="width: 500"]
[tr]
	[td]Function LettersFromWords(strWord As String)
  LettersFromWords = Replace(StrConv(strWord, vbUnicode), Chr(0), ".mp3;")
End Function[/td]
[/tr]
[/table]



@RatExcel that was superb .. thank you ..

i am trying to build a JSON ..

the requirement is as follows:

for example the word "flap" will need to be extracted as follows:

"app/assets/audio/f.mp3",
"app/assets/audio/l.mp3",
"app/assets/audio/a.mp3",
"app/assets/audio/p.mp3"

The last instance without a comma ...

<colgroup><col></colgroup><tbody>
</tbody>
Here is the above function modified to do what you are asking for here (notice the changed function name)...
Code:
[table="width: 500"]
[tr]
	[td]Function AppAssetsAudio(strWord As String)
  AppAssetsAudio = """app/assets/audio/" & Replace(Left(StrConv(strWord, vbUnicode), 2 * Len(strWord) - 1), Chr(0), ".mp3"",""app/assets/audio/") & ".mp3"""
End Function
[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,871
Members
449,054
Latest member
juliecooper255

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top