(37 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.without_prefix 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.without_prefix \- remove prefix8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.without_prefix\ :\ func(text:\ Text,\ prefix:\ Text\ ->\ Text)13 .fi14 .SH DESCRIPTION15 Returns the text with a given prefix removed (if present).18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 text Text The text to remove the prefix from.26 prefix Text The prefix to remove.27 .TE28 .SH RETURN29 A text without the given prefix (if present) or the unmodified text if the prefix is not present.31 .SH EXAMPLES32 .EX33 assert "foo:baz".without_prefix("foo:") == "baz"34 assert "qux".without_prefix("foo:") == "qux"35 .EE36 .SH SEE ALSO37 .BR Tomo-Text (3)