version : 1.0.0
Find index of nth occurrence of a character. Returns -1 if not found.
结果(Result)
Find all indices where a character appears. Returns empty list if not found.
结果(Result)
Find starting index of nth occurrence of a substring. Returns -1 if not found.
结果(Result)
Find all starting indices where a substring appears (includes overlaps).
结果(Result)
Split text at exact index positions. Indices auto-sorted and deduplicated.
结果(Result)
Insert text at index position without replacing. Supports negative indices.
结果(Result)
Delete characters in range [start, end).
结果(Result)
Replace characters in range [start, end) with new text.
结果(Result)
Find all regex matches with positions. Returns list of {start, end, match} dicts.
结果(Result)
Extract content between markers with positions. Returns dict with content and position info.
结果(Result)
Count character statistics. Returns dict with total, without_spaces, letters, digits, spaces, special.
结果(Result)
Extract substrings by index ranges. Supports negative indices and omitting end. Returns list of {start, end, substring, length} dicts.
结果(Result)