53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
written.
Conditions are optional, i.e.:
<<- ~>> replacement
LCR flags means:
* L: Left boundary for the regex
* C: Case sensitiveness
* R: Right boundary for the regex
Left boundary (L):
`[` word boundary
`<` no word boundary
right boundary (R):
`]` word boundary
`>` no word boundary
Case sensitiveness (C):
`i` case insensitive
`s` case sensitive
`u` uppercase allowed for lowercased characters
i.e.: "Word" becomes "W[oO][rR][dD]"
Examples:
__[i]__ pattern
__<s]__ pattern
__[u>__ pattern
__<s>__ pattern
...
|
>
|
|
|
|
|
|
|
|
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
written.
Conditions are optional, i.e.:
<<- ~>> replacement
LCR flags means:
* L: Left boundary for the regex
* C: Case sensitiveness
* R: Right boundary for the regex
Left boundary (L):
> `[` word boundary
> `<` no word boundary
right boundary (R):
> `]` word boundary
> `>` no word boundary
Case sensitiveness (C):
> `i` case insensitive
> `s` case sensitive
> `u` uppercase allowed for lowercased characters
>> i.e.: "Word" becomes "W[oO][rR][dD]"
Examples:
__[i]__ pattern
__<s]__ pattern
__[u>__ pattern
__<s>__ pattern
...
|