aboutsummaryrefslogtreecommitdiff
path: root/core/text
Commit message (Collapse)AuthorAgeFilesLines
* core:os -> core:os/old && core:os/os2 -> core:osJeroen van Rijn6 days5-12/+10
|
* Remove all `core:os` imports from JS targetsJeroen van Rijn6 days9-32/+77
| | | | Fix `local_tz_name` on FreeBSD.
* One more fix.Jeroen van Rijn7 days1-1/+1
|
* Update exampleJeroen van Rijn7 days1-11/+9
|
* core:text/table -> core:os/os2Jeroen van Rijn7 days1-4/+4
|
* core:text/regex -> core:os/os2Jeroen van Rijn7 days1-2/+2
|
* core:text/i18n -> core:os/os2Jeroen van Rijn7 days3-38/+23
|
* text/regex: Pass given allocator on in create_iteratorFabian Erdmann13 days1-2/+2
|
* Add `translate_by_grapheme: bool` fieldgingerBill2025-12-161-4/+23
|
* Merge pull request #5859 from odin-lang/bill/change-licensedev-2025-11gingerBill2025-11-0415-15/+15
|\ | | | | Change Odin's LICENSE to zlib from BSD 3-clause
| * Change Odin's LICENSE to zlib from BSD 3-clausegingerBill2025-10-2815-15/+15
| | | | | | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
* | Add missing case for octal prefixmtarik34b2025-11-031-1/+3
|/
* Further overhaul of package line comments.Jeroen van Rijn2025-10-0912-15/+16
|
* Minor formatting changesgingerBill2025-10-071-97/+68
|
* Remove `@(require_results)` on `find_aux`gingerBill2025-10-071-1/+0
|
* Add `@(rodata)` and `@(require_results)` to `core:text/match`gingerBill2025-10-071-25/+51
|
* text/regex: Remove old docmentation and unneeded flagFeoramund2025-06-201-4/+0
| | | | | `Unsupported_Flag` was used back when the iterator did not handle `.Multiline`.
* Fix multiline RegEx iterationFeoramund2025-05-265-50/+59
| | | | | | | | | | In `.Multiline` mode: - `^` is now defined to assert the start of the string or that a "\n" or "\r" rune was parsed on last VM dispatch. - `$` is now defined to consume a newline sequence of "\n", "\r", or "\r\n" or to assert the end of the string.
* Merge pull request #5209 from Feoramund/regex-fixesJeroen van Rijn2025-05-244-20/+74
|\ | | | | Fix RegEx iterator, remove `.Global`, make patterns unanchored by default (breaking change)
| * Remove `Global` RegEx flag, default to unanchored patternsFeoramund2025-05-243-12/+9
| |
| * Make RegEx VM restartable and fix iterator infinite loopFeoramund2025-05-242-8/+65
| |
* | Typo fixJeroen van Rijn2025-05-231-1/+1
| |
* | Allow text/scanner to scan 0h hex floatsJeroen van Rijn2025-05-231-1/+3
|/
* Disallow .Multiline in iterator.Jeroen van Rijn2025-04-071-0/+8
|
* Remove now unused field.Jeroen van Rijn2025-04-071-1/+0
|
* Optimize regex match iterator.Jeroen van Rijn2025-04-072-17/+50
| | | | Reuse virtual machine and capture groups between matches.
* Return loop index in regex iterator.Jeroen van Rijn2025-04-061-2/+12
|
* {.Glboal} implicit in regex allocator.Jeroen van Rijn2025-04-061-0/+2
|
* Add iterator for `core:text/regex`.Jeroen van Rijn2025-04-061-5/+95
| | | | | | | | | | | | | | | Usage: ```odin haystack := `xxfoobarxfoobarxx` pattern := `f(o)ob(ar)` it := regex.create_iterator(haystack, pattern, {.Global}) or_return defer regex.destroy(it) for capture in regex.match(&it) { fmt.println(capture) } ```
* Fix captures not begin zeroed when haystack length is 0James Duran2025-01-151-6/+6
|
* Allow captures in gfind and gmatch to be used in-loopJames Duran2025-01-151-2/+10
|
* fix: regex's match_with_preallocated_capture returning num_groupsYcros2024-12-041-0/+1
|
* Update scanner.odinDoeke Wartena2024-11-071-1/+1
| | | remove duplicated wording in comment
* core: improve package doc comments for the documentation generatorLaytan Laats2024-09-032-24/+14
|
* Fix `-vet-tabs` issuesgingerBill2024-08-241-1/+1
|
* Merge pull request #3962 from Feoramund/regexgingerBill2024-08-2116-0/+3834
|\ | | | | Add `core:text/regex`
| * Review manual `for` loops in `core:text/regex`Feoramund2024-08-053-6/+8
| |
| * Add explicit license info to `core:text/regex`Feoramund2024-08-0411-0/+88
| |
| * Document rationale behind RegEx shorthand classesFeoramund2024-08-041-0/+18
| |
| * Add more documentation for `core:text/regex` APIFeoramund2024-08-041-0/+21
| |
| * Remove unused codeFeoramund2024-08-041-2/+0
| |
| * Move `Flag_To_Letter` to `core:text/regex/common`Feoramund2024-08-042-11/+11
| |
| * Hide `Regular_Expression` valuesFeoramund2024-08-041-2/+2
| | | | | | | | | | | | | | We don't directly support printing these. To prevent future issues being raised about the pattern being missing if someone tries to print one, hide everything.
| * Add missing features to `regex` package documentationFeoramund2024-08-041-2/+6
| |
| * Use `unaligned_store` in `regex` tooFeoramund2024-07-241-12/+15
| |
| * Use `unaligned_load` for `regex` virtual machineFeoramund2024-07-243-18/+21
| | | | | | | | | | This should hopefully avoid any issues with loading operands greater than 8 bits on alignment-sensitive platforms.
| * Remove printing facilities for `Regular_Expression`Feoramund2024-07-241-2/+0
| | | | | | | | | | | | | | | | | | The `original_pattern` introduced a tenuous dependency to the expression value as a whole, and after some consideration, I decided that it would be better for the developer to manage their own pattern strings. In the event you need to print the text representation of a pattern, it's usually better that you manage the memory of it as well.
| * Allow configuring of `MAX_CAPTURE_GROUPS` for `n` > 10Feoramund2024-07-241-1/+1
| |
| * Use `slice.zero` insteadFeoramund2024-07-241-3/+2
| |
| * Fix handling of unclosed `regex` classes and repetitionsFeoramund2024-07-241-2/+2
| |