PDF テキストの読み取りアクティビティを使用して .pdf ファイルの最初のページのみを読み取るには、Range プロパティにどのような値を入力する必要がありますか?
正解:A
The Read PDF Text activity in UiPath allows users to extract text from a PDF file. The Range property determines which pages should be read.
* Correct Syntax for Reading a Specific Page:
* To read only page 1, you need to enter "1" in the Range property.
* This tells UiPath to extract text only from the first page of the document.
* Why Other Options Are Incorrect:
* B ("") # An empty string means all pages will be read, which is not what the question asks.
* C ((0)) # Incorrect because UiPath follows 1-based indexing, not 0-based.
* D (1) # Incorrect because the Range property expects a string value ("1"), not a numeric input.
References:
# UiPath Official Documentation - Read PDF Text# UiPath PDF Automation Best Practices