All ChallengesLoading...
Not Solved
Extract characters between two specific characters
Write a function that extracts and returns the substring located between two specific characters in a given string. If either character is missing, return None.
Advanced
sample input: "a(b)c", "(", ")"
sample output: b
Loading...
Test Output: