世界上最简单的基于浏览器的列表项展开工具。输入已展开的列表,并指定展开条件以展平有序的列表项。非常适合数据处理、文本操作或从结构化列表中提取内容。
此工具允许您移除列表中每个项目的包装字符。您可以指定要从左侧和右侧移除的字符,处理多个级别的包装,并控制列表的处理方式。它适用于清理数据、移除引号或括号以及格式化列表。
This example shows how to remove quotes from each item in a list.
"apple" "banana" "orange"
apple banana orange
This example shows how to remove multiple levels of the same character from each item.
###Hello### ##World## #Test#
Hello World Test
This example shows how to unwrap items and join them with a custom separator.
[item1] [item2] [item3]
item1, item2, item3