Skip to content
/ key-list Public

A very minimal crate to get you a specific sequence between two characters in a string, fast. Most useful for big strings.

License

Notifications You must be signed in to change notification settings

0x20F/key-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

key-list

A very minimal crate to get you a specific sequence between two characters in a string, fast.

Build status badge Crates io badge License badge

How to use

[dependencies]
key-list = "1"

And some code

let text = "/this/ has some /keys/";
let list = KeyList::new(text, '/', '/');

for key in list {
    println!("{}", key); // '/this/', '/keys/'
}

About

A very minimal crate to get you a specific sequence between two characters in a string, fast. Most useful for big strings.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages