billthefarmer / editor

Android simple text editor
https://billthefarmer.github.io/editor
GNU General Public License v3.0
474 stars 85 forks source link

ignore case text search #154

Closed RFDAJE closed 3 years ago

RFDAJE commented 3 years ago

First a BIG thanks to the dev who brought us such a amazing and useful App.

I am using Version 1.62, it seems that editor does only case sensitive search, is there a setting to make it ignore case?

billthefarmer commented 3 years ago

The text search uses Regular Expressions which means that you can search for just about anything. For example [Ss]elect will find Select or select. It's also interactive, so it will probably find what you want before you have finished typing in what you are looking for.

RFDAJE commented 3 years ago

Good to know text search supports regex. If I want to match both "SELECT" and "select", it is a little bit tedious to type [Ss][Ee][Ll][Ee][Cc][Tt].

RFDAJE commented 3 years ago

use (?i)select for ignorecase search, it will match both.

hueldoeu commented 2 years ago

(?i) ... nice!