1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*!
# Starts/Ends With Caseless

This crate provides the `StartsWithCaseless` trait and the `EndsWithCaseless` trait to extend types which implement `AsRef<str>` in order to do `starts_with` and `ends_with` case-insensitively.

## Examples

```rust
extern crate starts_ends_with_caseless;

use starts_ends_with_caseless::StartsWithCaseless;

assert_eq!(true, "foobar".starts_with_caseless_ascii("FoO"));

# #[cfg(feature = "std")] {
assert_eq!(true, "Maße 123".starts_with_caseless("MASSE"));
# }
```

```rust
extern crate starts_ends_with_caseless;

use starts_ends_with_caseless::EndsWithCaseless;

assert_eq!(true, "foobar".ends_with_caseless_ascii("BaR"));

# #[cfg(feature = "std")] {
assert_eq!(true, "123 Maße".ends_with_caseless("MASSE"));
# }
```

## Multiple Prefixes or Suffixes

This crate also provides the `StartsWithCaselessMultiple` trait and the `EndsWithCaselessMultiple` trait to do `starts_with_caseless` and `ends_with_caseless` with multiple prefixes or suffixes.

### Example

```rust
extern crate starts_ends_with_caseless;

use starts_ends_with_caseless::EndsWithCaselessMultiple;

assert_eq!(Some(1), "photo.jpg".ends_with_caseless_ascii_multiple(&[".png", ".jpg", ".gif"]));
```

## No Std

Disable the default features to compile this crate without std. But the `starts_with_caseless`, `ends_with_caseless`, `starts_with_caseless_multiple` and `ends_with_caseless_multiple` methods will be disabled at this stage as well.

```toml
[dependencies.starts-ends-with-caseless]
version = "*"
default-features = false
```
*/

#![cfg_attr(not(feature = "std"), no_std)]

mod ends_with_caseless;
mod ends_with_caseless_multiple;
mod starts_with_caseless;
mod starts_with_caseless_multiple;

pub use ends_with_caseless::EndsWithCaseless;
pub use ends_with_caseless_multiple::EndsWithCaselessMultiple;
pub use starts_with_caseless::StartsWithCaseless;
pub use starts_with_caseless_multiple::StartsWithCaselessMultiple;