v/vlib/strings
2024-05-21 09:11:56 +03:00
..
textscanner strings.textscanner: fix off-by-one error in skip method (#21045) 2024-03-17 11:11:10 +02:00
builder.c.v builtin,v: reduce overhead and memory usage for very frequently called methods (#21540) 2024-05-21 09:11:56 +03:00
builder.js.v vlib: refactor empty string checks to use s == '' or s != '', instead of s.len == 0 (#21300) 2024-04-18 02:44:31 +03:00
builder_test.js.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
builder_test.v io: add a string_reader submodule (#20893) 2024-02-27 09:38:30 +02:00
README.md doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00
similarity.v strings: fix levenshtein_distance function correctness after #20435 (#20474) 2024-01-10 23:33:39 +02:00
similarity_test.js.v js: fix string.bytes codegen, readline, add tests for strings (#12060) 2021-10-04 18:28:30 +03:00
similarity_test.v strings: fix levenshtein_distance function correctness after #20435 (#20474) 2024-01-10 23:33:39 +02:00
strings.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
strings.js.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
strings.v strings: add split_capital (#14716) 2022-06-07 18:43:06 +03:00
strings_test.js.v js: fix string.bytes codegen, readline, add tests for strings (#12060) 2021-10-04 18:28:30 +03:00
strings_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00

Description

strings provides utilities for efficiently processing large strings.

If you got here looking for methods available on the string struct, those methods are found in the builtin module.