class EL_ZSTRING_EDITOR
Client examples: ZSTRING_EDITOR_TEST_SET
Edit strings of type EL_ZSTRING by applying an editing procedure to all occurrences of substrings that begin and end with a pair of delimiters.
See {EL_STRING_EDITOR}.delete_interior for an example of an editing procedure
note
description: "[
Edit strings of type ${EL_ZSTRING} by applying an editing procedure to all
occurrences of substrings that begin and end with a pair of delimiters.
See ${EL_STRING_EDITOR}.delete_interior for an example of an editing procedure
]"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-04-04 10:28:03 GMT (Thursday 4th April 2024)"
revision: "7"
class
EL_ZSTRING_EDITOR
inherit
EL_STRING_EDITOR [ZSTRING]
redefine
append_character
end
create
make, make_empty
feature {NONE} -- Implementation
append_character (string: ZSTRING; c: CHARACTER_32)
do
string.extend (c)
end
area_count: INTEGER
do
Result := target.area.count
end
modify_target (str: ZSTRING)
do
target.share (str)
end
trim
-- trim target
do
target.trim
end
wipe_out (str: ZSTRING)
do
str.wipe_out
end
end