Skip to content
Advertisement

How to find the index in a string in spark when I am dealing with a list?

How do I find the index of the numbers 0-9 in a string?

JavaScript

TypeError: must be str, not list

How do I get around this and replicate what essentially is a PATINDEX in SQL server?. The following answer gives me a perspective of searching using regex but I am still unable to insert lists.

Advertisement

Answer

You can use a list comprehension to find the numbers:

JavaScript

If you want the smallest number, you can use min:

JavaScript

Or you can use re.search for use with a regex pattern:

JavaScript

Remember to wrap the regex pattern in double quotes, otherwise it would be interpreted as a list of 0-9 (zero minus nine), which is -9.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement