Adds the ^ anchor to the beginning of the pattern, ensuring
the match must start at the very first character of the string.
xp_wrap_start(pattern)A regexpert object.
# Match "Hello" only if it's at the very start
xp_build_literal("Hello") %>% xp_wrap_start()
#> <regexpert pattern>
#> ^Hello