Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この宿題は、regexp_like 式を使用して、3 つの単語を含むコース名を見つけることです。
私が現在使用している表現は、'\w\s\w\s\w$' のようなものです。ただし、$ 記号を追加すると結果が得られません。その記号がない場合、3 つの単語列と 4 つの単語列が表示されます。ここで何が間違っていますか?
$行の終わりを示すアンカーです。
$
`\w\s\w\s\w' は、スペースで区切られた 3 文字のみに一致する必要があります。次のようなものを試すことができます。
'^\w+\s\w+\s\w+$'