We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correctly map iNat’s Hygrocybe sp. 'conica-CA06' (see https://www.inaturalist.org/observations/197869712) to Hygrocybe "conica-CA06" . It currenly maps to Hygrocybe "sp-sp. 'conica-CA06'"
Hygrocybe "sp-sp. 'conica-CA06'"
The text was updated successfully, but these errors were encountered:
Chat GPT suggests the following, which I can improve:
def clean_string(str) match_data = str.match(/([A-Z][a-z]+) sp\. (.+)/) "#{match_data[1]} #{match_data[2]}" end # Example usage original_string = "Hygrocybe sp. 'conica-CA06'" cleaned_string = clean_string(original_string) puts cleaned_string # Output: "Hygrocybe 'conica-CA06'"
Sorry, something went wrong.
JoeCohen
When branches are created from issues, their pull requests are automatically linked.
Correctly map iNat’s Hygrocybe sp. 'conica-CA06' (see https://www.inaturalist.org/observations/197869712) to Hygrocybe "conica-CA06" .
It currenly maps to
Hygrocybe "sp-sp. 'conica-CA06'"
The text was updated successfully, but these errors were encountered: