7 lines
140 B
Text
7 lines
140 B
Text
scalar s="ars longa vita brevis"
|
|
|
|
* is there a vowel?
|
|
di regexm(s,"[aeiou]")
|
|
|
|
* replace the first vowel with "?"
|
|
di regexr(s,"[aeiou]","?")
|