-
```
I think it would be good to have the option of having case insensitive
tags. E.g., convert all tags to lowercase before storing, so that
"Something" and "something" would show as the same tag, wh…
-
As the subject says. is there a canned way to make filters case insensitive or do I need a custom filter to do that?
-
I like what this library does but I need case insensitive search.
It seems to be really easy to let the user provide `~case` here: https://github.com/rgrinberg/humane-re/blob/master/lib/str.ml#L13
…
-
```
I think it would be good to have the option of having case insensitive
tags. E.g., convert all tags to lowercase before storing, so that
"Something" and "something" would show as the same tag, wh…
-
Hi,
First of all thanks for your work, it works well and it's really useful.
What do you think of an option to make a case insensitive search for city/country names. I'm trying to do it for my …
-
I wanted to make it so it replaces all the `idk`'s in my messages into `I don't know`
Case 1:
**I used:** `\b(?i:idk)\b`
**Result:** _did nothing_
Case 2:
**I used:** `\b(?:idk|Idk|IDK)\b`
…
-
```
from 'My Index'
where eventid=1
select EventId, eventid
```
gives lots of
`1, NULL`
-
I believe the getters for resultSet should be case insensitive:
>Column names used as input to getter methods are case insensitive.
From [here](https://docs.oracle.com/javase/8/docs/api/java/sq…
-
### API
Other
### Description
Table and column names are case insensitive when it comes to Kuzu tables, however, we force case sensitive when it comes to `LOAD FROM` statements. I propose to change…
-
Given an example GET method
```C#
[Route(HttpVerbs.Get, "/GetTest/{id?}")]
public string GetTest(int? id)
{
return $"GetTest success [id={id}]!";
}
```
I realized that routing is case …