search_for in Fitz #3251
Unanswered
maivan-hoa
asked this question in
Looking for help
Replies: 1 comment 9 replies
-
Interesting problem! print(f"{texta[1]=}") # line 2 from File_A
texta[1]='Quy định tại Điều 4, Điều 5 và Điều 6 Thông tư này. '
print(f"{textb[0]=}") # line 1 from File_B
textb[0]='Quy định tại Điều 4, Điều 5 và Điều 6 Thông tư này. '
texta[1] == textb[0] # !!!
False
len(texta[1]) # even different lengths!
57
len(textb[0])
52 |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have two pdf files:
File_A.pdf
andFile_B.pdf
. These two files have the same content, I just reversed the sentence order in the two files. But thesearch_for
function doesn't work withFile_A
.Below is the code that I use:
File_A.pdf
, I get the following result:File_B.pdf
, I get the following result:I also attached these two files below. Look forward to the help of everyone!
File_A.pdf
File_B.pdf
Beta Was this translation helpful? Give feedback.
All reactions