String manipulation in Mojo

236 Views Asked by At

I have a Mojo struct with the following initialiser:

    fn __init__(inout self, value: String):
        """Constructor."""
        self.value = value.lower()

If I have something as simple as a String, and the "lower()" function exists in Python on the str object, but that functionality does not exist in Mojo, what is the correct way forward? Roll my own lower() in Mojo, or pull it somehow from Python?

Any pointers would be much appreciated.

2

There are 2 best solutions below

0
On BEST ANSWER

One way forward could be to import this functionality from Python. I don't know if this is the most elegant way, but it works...:

fn __init__(inout self, value: String) raises:
    self.value = PythonObject(value).lower().to_string()
0
On

for anyone who looks now (01/2024):

tolower
tolower(self: Self) -> Self

Returns a copy of the string with all ASCII cased characters converted to lowercase.

Returns:

A new string where cased letters have been convered to lowercase.
let name: String = "ALEX"
print(name.tolower()) # alex

Mojo string module