Skip to content

Releases: coghost/xparse

v0.1.10

13 Feb 08:49

Choose a tag to compare

feat: support _omit_empty for HTML parser.

v0.1.9

03 Jan 08:38

Choose a tag to compare

feat: refactor json/html parse with new key _raw to keep raw value su…

v0.1.8

27 Dec 08:35

Choose a tag to compare

feat: treat comma as thousand separator if it in chars passed in, som…

v0.1.7

03 Dec 04:09

Choose a tag to compare

feat: add keepLastFound to splitter

v0.1.6

02 Dec 06:47

Choose a tag to compare

feat: refactor splitter, prompts; add ToString/ToInt64 to Parser.

v0.1.5

30 Nov 07:51

Choose a tag to compare

feat: add splitter for string manipulation.

v0.1.4

29 Nov 04:55

Choose a tag to compare

feat: support convert common acronyms like Id to ID.

v0.1.3

28 Nov 06:32

Choose a tag to compare

add support for parse string to index range
The input string can contain:

  • Single numbers: "0", "-1" or "1, 2, -3"
  • Inclusive ranges using dash: "0-3", "-2-1" (equivalent to "-2,-1,0,1")
  • Exclusive ranges using tilde: "0~3", "-2~1" (equivalent to "-2,-1,0")
  • Combination of both: "-1, 3-7, -5~-2"

v0.1.2

24 Nov 09:00

Choose a tag to compare

refactor: reorganize constants with logical groupings and improved do…