回答編集履歴

3

調整

2025/01/24 08:02

投稿

yambejp
yambejp

スコア117203

test CHANGED
@@ -6,4 +6,9 @@
6
6
 
7
7
  全角英数を含む
8
8
  =regexmatch(A3,"[a-zA-Z0-9]")
9
+
10
+ 半角英数・全角英数が混在する
11
+ =and(regexmatch(A3,"[a-zA-Z0-9]"),regexmatch(A3,"[a-zA-Z0-9]"))
12
+
9
13
  ```
14
+ 記号とは具体的になんでしょう?

2

調整

2025/01/24 07:37

投稿

yambejp
yambejp

スコア117203

test CHANGED
@@ -5,5 +5,5 @@
5
5
  =regexmatch(A3,"[a-zA-Z0-9]")
6
6
 
7
7
  全角英数を含む
8
- =regexmatch(A3,"[azA-Z0-9]")
8
+ =regexmatch(A3,"[a-zA-Z0-9]")
9
9
  ```

1

ちょうせい 

2025/01/24 07:36

投稿

yambejp
yambejp

スコア117203

test CHANGED
@@ -2,8 +2,8 @@
2
2
  regexmatch
3
3
  ```
4
4
  半角英数を含む
5
- =regexmatch(A2,"[a-zA-Z0-9]")
5
+ =regexmatch(A3,"[a-zA-Z0-9]")
6
6
 
7
7
  全角英数を含む
8
- =regexmatch(A2,"[azA-Z0-9]")
8
+ =regexmatch(A3,"[azA-Z0-9]")
9
9
  ```