Skip to content
This repository was archived by the owner on May 14, 2020. It is now read-only.
This repository was archived by the owner on May 14, 2020. It is now read-only.

December monthly meeting agenda #972

@spartantri

Description

@spartantri

Case sensitive items (additional infos)

There are rules with different approaches

  • Ignore cases by converting all to lowercase/uppercase in a transform (t:lowercase)
  • Ignore cases by using case insensitive regex (?i)
  • Case sensitive rules using all uppercase [good for http methods bad for most other stuff] (?:GET|POST)
  • Case sensitive rules using regex with both cases (?:[eEiIoOuUyY]acute)
  • Which one is faster?
  • Benchmarks?
  • Which one to use on which circumstance

It maybe easier to use t:lowercase and convert all the regex to lowercase and add a warning in CONTRIBUTING.md

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions