How to convert a string to all lowercase?

Started by TheCatalystGaming on

Topic category: Help with Minecraft modding (Java Edition)

Joined Nov 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to convert a string to all lowercase?

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?

Joined Nov 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
String toLowerCase() Add a…
Sat, 11/21/2020 - 20:37

String toLowerCase()

Add a custom code snippet and add whatever the strings name is to ".toLowerCase()"

Joined Nov 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
E.g name.toLowerCase();
Sat, 11/21/2020 - 20:40

E.g name.toLowerCase();