Glen

Results 238 comments of Glen

PHP (8.2.1) also seems to use a string conversion/cast, so boolean `true` actually matches `1`. Boolean `false` is an empty string, so it probably can't even be matched. In that...

Are there really no formatters for numbers, dates, etc.? 😞 > Basically, it should be able to do anything that [MessageFormat.js](https://github.com/SlexAxton/messageformat.js) can do. Or not? 🙃 [Argument formatting](https://unicode-org.github.io/icu/userguide/format_parse/messages/#argument-formatting) is a...

@jeffijoe It's the last of three recommended methods for the argument _style_, not the _type_. ``` {0, number, integer} ^ type ^ style ``` The [predefined styles](https://unicode-org.github.io/icu/userguide/format_parse/messages/#predefined-styles-recommended) are the most...

> @glen-84 looking at the skeletons, too. It looks like ICU4C and ICU4J use different formatting codes, right? Like j in C for hour vs h in Java? If we...

Thanks for your input @NightOwl888. It's really unfortunate that ICU APIs are not part of the framework. It doesn't seem practical to implement this "from scratch", so maybe this library...

> Or fortunate, depending on how you look at it. Well, I didn't necessarily suggest that they'd just call into the C version. They have more resources to write a...

I don't think there is a `decimal` style? I've put some data together (count = `1234567.1234567`): | | en-US | de-DE | ar | |-------------------------------|---------------|----------------|-------------------| | `{count, number}` | |...

> As I had previously mentioned, .NET parsers and formatters only support ASCII digits (that is 0-9). Apologies, I missed that. I see that someone wanted to work on implementing...

@jeffijoe Sorry about the delay, I'll try to get back to you within the next ~2 weeks.

@jeffijoe I don't know if this is going to be feasible. 😢 There's no medium or full date format in .NET, only short and long. | | **en-US** | **de-DE**...