Luke
a5ecb9bd6b
AK: Add case insensitive version of starts_with
2020-07-21 01:08:32 +02:00
Andreas Kling
fdfda6dec2
AK: Make string-to-number conversion helpers return Optional
...
Get rid of the weird old signature:
- int StringType::to_int(bool& ok) const
And replace it with sensible new signature:
- Optional<int> StringType::to_int() const
2020-06-12 21:28:55 +02:00
Brian Gianforcaro
332f96e7ca
AK: Add case insensitive String::ends_with support
...
FileSystemPath::has_extension was jumping through hoops and allocating
memory to do a case insensitive comparison needlessly. Extend the
existing String::ends_with method to allow the caller to specify the
case sensitivity required.
2020-05-26 13:17:19 +02:00
Brian Gianforcaro
8e4b858b3f
AK: Move String::ends_with implementation to StringUtils
...
Centralizing so it can be used by other string implementations
2020-05-26 13:17:19 +02:00
Hüseyin ASLITÜRK
738235574f
AK: StringUtils, add "convert_to_uint_from_hex" method
...
New method to convert hex string unsigned integer.
2020-05-21 01:19:42 +02:00
Andreas Kling
26bc3d4ea0
AK: Add FlyString::equals_ignoring_case(StringView)
...
And share the code with String by moving the logic to StringUtils. :^)
2020-03-22 13:07:45 +01:00
Andreas Kling
0efa47b7ef
AK: Run clang-format on StringUtils.{cpp,h}
2020-03-22 13:04:04 +01:00
Andreas Kling
f5b78c2a1c
AK: Add missing copyright headers to StringUtils.{cpp,h}
2020-03-02 14:23:11 +01:00
howar6hill
d75fa80a7b
AK: Move to_int(), to_uint() implementations to StringUtils ( #1338 )
...
Provide wrappers in String and StringView. Add some tests for the
implementations.
2020-03-02 14:19:33 +01:00
howar6hill
055344f346
AK: Move the wildcard-matching implementation to StringUtils
...
Provide wrappers in the String and StringView classes, and add some tests.
2020-03-02 10:38:08 +01:00