(From the forums topic https://forums.swift.org/t/inserting-regex-into-literal-regex-expressions/81070.) When a regex has been declared e.g. via a literal expression: ```swift let greeting = /(hello|hi)/ ``` Then it can be nice to use this in another regex (this does work today): ```swift let greetingSomeone = Regex { greeting ChoiceOf{ " "; ", " } OneOrMore { .word } } ``` It should be possible to insert the `greeting` regex directly into a literal regex (the syntax might have to be different): ```swift let greetingSomeone = /\(greeting)( |, )\w+/ ```