The function receives a string input and returns a new string consisting only of the uppercase characters from the original input string.

[CODE]:
```python
def extract_uppercase(input_str):
    return ''.join(c for c in input_str if c.isupper())
```