「範囲内で検索」で、特定のキーワードがあればA、なければ次の作業に移りたい

いつも大変お世話になっております。

「範囲内で検索」で、特定のキーワードがあればAの作業、なければ次の作業に移りたいのですが、条件分岐の条件式はどのように記載すればよいでしょうか??

基本的にな質問で申し訳ないのですが、ご教授ください。

Hi @kiki1

If YourTextVariable.Contains("YourKeyword")
   Then
       ' Work A
   Else
       ' Next task
End If

Hi @kiki1

This if for Sequence -------------
→ Store the text in a Variable called InputVar.
→ Take an If condition to check the Specific keyword contains in the Input text.

- If -> InputVar.Contains("Specific Keyword")
--------Then block
      Insert the Work A Worfklow
--------Else block
      Insert the next task

In the If condition it will check the specific keyword contains in it.
→ If it is true then it will go to Then block and execute the Work A workflow.
→ If it is false then it will go to else block and execute the Next Task.

This is for Flowchart ----------------
→ Take a assign activity and create a boolean datatype variable called BoolFlag

- Assign -> BoolFlag = If(InputVar.Contains("Specific keyword"),True,False)

→ Take Flow decision activity to check the BoolFlag true or false
→ In True flow give the workflow of Work A
→ In False flow give the workflow of Next Task

Hope it helps!!

こんにちは

キーワードを検索するだけでしたら、範囲内検索アクティビティではなく、値を検索/置換アクティビティの方が良いと思います。(前者は近似値でも一致と見なすと思うので)
例えば以下の様になると思います。

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.