Started by
TheCatalystGaming
on
Topic category: Help with Minecraft modding (Java Edition)
I have various strings that are capitalised, and I would like to replace the capitals with lowercase letters. However the strings are of varying lengths and content. I could use "Replace x with y in z", but I would have to do that 26 times for every letter. Is there a better solution?
String toLowerCase()
Add a custom code snippet and add whatever the strings name is to ".toLowerCase()"
E.g name.toLowerCase();
Thanks, this worked!
:D