0

I want to use a substring in a CASE statement that if it returns true then it will return whatever is in the THEN clause, such as:

CASE
WHEN substring(name, '\d\s\d{8}') THEN 'Long Name'
END

2 Answers 2

2

Since you only need a boolean result, use a simple regular expression instead of the function substring():

CASE WHEN name ~ '\d\s\d{8}' THEN 'Long Name' END

You can use the same regex pattern. Defaults to NULL if the pattern is not found.

Sign up to request clarification or add additional context in comments.

Comments

1

If you need the substring() you then need to evaluate the string that is returned by the substring function:

case
   when substring('foobar' from '\d\s\d{8}') IS NOT NULL then 'Long Name'
   else 'Short Name'
end

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.