6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

藤原達也変換プログラムをPowerShellで

Posted at

元ネタの元ネタ:JavaScriptで藤原竜也変換ツールを作りましたよ゛お゛お゛お゛ - Qiita
元ネタ:藤原達也変換プログラムをJavaで組んでみた - Qiita

PowerShell で組んでみた。

fujiwara.ps1
Param([string] $in)

$out = ""

$in.ToCharArray() | % {
    if ($_ -notmatch '[、。!?]') {
        $out += "$_゛"
    } else {
        $out += $_
    }
}

echo $out
実行
> .\fujiwara.ps1 きんっきんにひえてやがるとおおお
き゛ん゛っ゛き゛ん゛に゛ひ゛え゛て゛や゛が゛る゛と゛お゛お゛お゛

これは力強い。

とか の濁点を考慮しなければ、ワンライナーでも。

fujiwara.ps1
($args[0].ToCharArray() -join "゛") + "゛"
6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?