We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現在、メールアドレス変換として次のような機能が用意されている。
/[A-Za-z0-9_\.]+@/
@gmail.com
@icloud.com
これに対して、以下の要望が来ていた。
@gまで入力している場合に絞り込んでほしい
@g
この機能を実装したい。現在の実装はEmailAddress.swiftに存在しており、これを拡張することで実現可能だと考えられる。
EmailAddress.swift
https://github.com/ensan-hcl/AzooKeyKanaKanjiConverter/blob/develop/Sources/KanaKanjiConverterModule/Converter/EmailAddress.swift
The text was updated successfully, but these errors were encountered:
/.*@/ ⇐ これ JS の正規表現ですか?
/.*@/
Sorry, something went wrong.
雰囲気正規表現でした。一応Swiftの正規表現リテラルの記法に沿ってはいます。suffixが@です ついでに/[A-Za-z0-9]+@/に書き換えました、より正確だったので。
@
/[A-Za-z0-9]+@/
/[A-Za-z0-9]+@/ ⇐ これは雰囲気でもわかりやすくていいですね JS だけじゃなく、Swift も同様のリテラル記法なんですね
No branches or pull requests
現在、メールアドレス変換として次のような機能が用意されている。
/[A-Za-z0-9_\.]+@/
と入力すると、@gmail.com
や@icloud.com
などを予測変換として表示するこれに対して、以下の要望が来ていた。
この機能を実装したい。現在の実装は
EmailAddress.swift
に存在しており、これを拡張することで実現可能だと考えられる。https://github.com/ensan-hcl/AzooKeyKanaKanjiConverter/blob/develop/Sources/KanaKanjiConverterModule/Converter/EmailAddress.swift
The text was updated successfully, but these errors were encountered: