https://github.com/encodeous/neutrino
https://github.com/encodeous/neutrino
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/encodeous/neutrino
- Owner: encodeous
- Created: 2022-03-07T00:44:51.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-18T17:17:29.000Z (about 3 years ago)
- Last Synced: 2025-04-04T09:46:18.215Z (10 months ago)
- Language: C#
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neutrino
## Full Text Match Pattern Format
Escape Character => \
Wildcard (cannot be in a segment) => `*`
Wildcard with Length (can be in a segment) => ``
Text => `'This is a string'`
Negation (can be used on text) => `!`
Spaces, newlines etc are ignored outside of text.
Example:
```
* 'I need to find this text' <11> `but there are 11 chars in between'<5>!'and it cannot end with this.'
```