Why Sponsor Oils? | source | all docs for version 0.20.0 | all versions | oilshell.org
Warning: Work in progress! Leave feedback on Zulip or Github if you'd like this doc to be updated.
This chapter in the Oils Reference describes YSH types and methods.
Replace substrings with a given string.
= mystr => replace("OSH", "YSH")
Or match with an Eggex.
= mystr => replace(/ d+ /, "<redacted>") # => "code is <redacted>"
Refer to Eggex captures with replacement expressions. Captured values can be
referenced with $1
, $2
, etc.
var mystr = "1989-06-08"
var pat = / <capture d{4}> '-' <capture d{2}> '-' <capture d{2}> /
= mystr => replace(pat, ^"Year: $1, Month: $2, Day: $3")
Captures can also be named.
= mystr2 => replace(/ <capture digit{4} as year : int> /, ^"$[year + 1]")
$0
refers to the entire capture itself in a substitution string.
var mystr = "replace with mystr => replace()"
= mystr => replace(/ alpha+ '=>' alpha+ '()' /, ^"<code>$0</code>")
# => "replace with <code>mystr => replace()</code>"
In addition to captures, other variables can be referenced within a replacement expression.
= mystr => replace(/ <capture alpha+> /, ^"$1 and $anotherVar")
To limit the number of replacements, pass in a named count argument. By default
the count is -1
. For any count in [0, MAX_INT], there will be at most count
replacements. Any negative count means "replace all" (ie. count=-2
behaves
exactly like count=-1
).
var mystr = "bob has a friend named bob"
= mystr => replace("bob", "Bob", count=1) # => "Bob has a friend named bob"
= mystr => replace("bob", "Bob", count=-1) # => "Bob has a friend named Bob"
The following matrix of signatures are supported by replace()
:
s => replace(string_val, subst_str)
s => replace(string_val, subst_expr)
s => replace(eggex_val, subst_str)
s => replace(eggex_val, subst_expr)
Respects unicode space.
Respects unicode space.
Respects unicode space.
Respects unicode.
Respects unicode.
Search for the first occurrence of a regex in the string.
var m = 'hi world' => search(/[aeiou]/) # search for vowels
# matches at position 1 for 'i'
Returns a value.Match()
if it matches, otherwise null
.
You can start searching in the middle of the string:
var m = 'hi world' => search(/dot 'orld'/, pos=3)
# also matches at position 4 for 'o'
The %start
or ^
metacharacter will only match when pos
is zero.
(Similar to Python's re.search()
.)
leftMatch()
is like search()
, but it checks
var m = 'hi world' => leftMatch(/[aeiou]/) # search for vowels
# doesn't match because h is not a vowel
var m = 'aye' => leftMatch(/[aeiou]/)
# matches 'a'
leftMatch()
Can be used to implement lexers that consome every byte of input.
var lexer = / <capture digit+> | <capture space+> /
(Similar to Python's re.match()
.)
Returns the string that matched a regex capture group. Group 0 is the entire match.
var m = '10:59' => search(/ ':' <capture d+> /)
echo $[m => group(0)] # => ':59'
echo $[m => group(1)] # => '59'
Matches can be named with as NAME
:
var m = '10:59' => search(/ ':' <capture d+ as minute> /)
And then accessed by the same name:
echo $[m => group('minute')] # => '59'
Like group()
, but returns the start position of a regex capture group,
rather than its value.
var m = '10:59' => search(/ ':' <capture d+ as minute> /)
echo $[m => start(0)] # => position 2 for ':59'
echo $[m => start(1)] # => position 3 for '59'
echo $[m => start('minute')] # => position 3 for '59'
Like group()
, but returns the end position of a regex capture group,
rather than its value.
var m = '10:59' => search(/ ':' <capture d+ as minute> /)
echo $[m => end(0)] # => position 5 for ':59'
echo $[m => end(1)] # => position 5 for '59'
echo $[m => end('minute')] # => 5 for '59'
Add an element to a list.
var fruits = :|apple banana pear|
call fruits->append("orange")
echo @fruits # => apple banana pear orange
remove an element from a list and return it.
var fruits = :|apple banana pear orange|
var last = fruits->pop() # "orange" is removed AND returned
echo $last # => orange
echo @fruits # => apple banana pear
Extend an existing list with the elements of another list.
var foods = :|cheese chocolate|
var fruits = :|apple banana|
call foods->extend(fruits)
echo @foods # => cheese chocolate apple banana
Returns the first index of the element in the list, or -1 if it's not present.
var names = :| Jane Peter Joana Sam |
echo $[names => indexOf("Sam")] # => 3
echo $[names => indexOf("Simon")] # => -1
Reverses a list in place.
var fruits = :|apple banana pear|
call fruits->reverse()
echo @fruits # => pear banana apple
Returns all existing keys from a dict as a list of strings.
var en2fr = {
hello: "bonjour",
friend: "ami",
cat: "chat"
}
= en2fr => keys()
# => (List 0x4689) ["hello","friend","cat"]
Similar to keys()
, but returns the values of the dictionary.
var person = {
name: "Foo",
age: 25,
hobbies: :|walking reading|
}
= en2fr => values()]
# => (List 0x4689) ["Foo",25,["walking","reading"]]
A Place is used as an "out param" by calling setValue():
proc p (out) {
call out->setValue('hi')
}
var x
p (&x)
echo x=$x # => x=hi
Like the eval
builtin, but useful in pure functions.
Like $()
, but useful in pure functions.
An API the wraps the $PS1
language. For example, to simulate PS1='\w\$ '
:
func renderPrompt(io) {
var parts = []
call parts->append(io->promptval('w')) # pass 'w' for \w
call parts->append(io->promptval('$')) # pass '$' for \$
call parts->append(' ')
return (join(parts))
}
TODO: Depends on system clock.
TODO: Like the awk function, this takes an timestamp directly.
In other words, it calls C localtime() (which depends on the time zone database), and then C strftime().
TODO: The free function glob() actually does I/O. Although maybe it doesn't fail?