Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1 +0,0 @@
$s = "asdf"

View file

@ -1 +0,0 @@
[string]::Join('', $s[$s.Length..0])

View file

@ -1 +0,0 @@
-join ($s[$s.Length..0])

View file

@ -1 +0,0 @@
[array]::Reverse($s)

View file

@ -1,3 +0,0 @@
$s -replace
('(.)' * $s.Length),
[string]::Join('', ($s.Length..1 | ForEach-Object { "`$$_" }))

View file

@ -1,3 +0,0 @@
$s -replace
('(.)' * $s.Length),
-join ($s.Length..1 | ForEach-Object { "`$$_" } )

View file

@ -1 +0,0 @@
[Regex]::Matches($s,'.','RightToLeft').Value -join ''

View file

@ -1,3 +0,0 @@
$a = 'abc 🐧 def'
$enum = $a.EnumerateRunes() | % { "$_" }
-join $enum[$enum.length..0] # fed 🐧 cba

View file

@ -1,6 +0,0 @@
$a = "aeiou`u{0308}yz"
$enum = [System.Globalization.StringInfo]::GetTextElementEnumerator($a)
$arr = @()
while($enum.MoveNext()) { $arr += $enum.GetTextElement() }
[array]::reverse($arr)
$arr -join '' # zyüoiea