웹에서 데이터 스크랩으로 특정 자료를 스크랩 한 데이터테이블 자료를 mssql로 입력할 때
원하지 않는 ‘?’ 문자가 여러 곳에 입력됩니다.
위 이미지와 같이 A? 3.6V? 부분에 원하지 않는 '?'가 발생합니다
웹 소스를 확인 결과 ‘ ’ 부분에서 '?'가 발생하여
replace(chr(32),“”)를 적용하여 다시 입력해봐도 '?'가 계속 발생합니다
조언 부탁드립니다
웹에서 데이터 스크랩으로 특정 자료를 스크랩 한 데이터테이블 자료를 mssql로 입력할 때
원하지 않는 ‘?’ 문자가 여러 곳에 입력됩니다.
위 이미지와 같이 A? 3.6V? 부분에 원하지 않는 '?'가 발생합니다
웹 소스를 확인 결과 ‘ ’ 부분에서 '?'가 발생하여
replace(chr(32),“”)를 적용하여 다시 입력해봐도 '?'가 계속 발생합니다
조언 부탁드립니다
Hi @YIA
Welcome to community
Do you want to remove the ? from the image
If yes
Try this below expression
"A? 3.6V? 3400r".Replace("?"," ")
Regards
Gokul
i already do it first,
but it not work on mssql datatable
thx for reply
Can you try to separate this condition into 2 Like
Use Assign activity
LHS - First (Create a variable)
RHS - IRow(“Colummn-0”).tostring.Replace(“”,“”)
Message box - First
Use Assign activity
LHS - Second (Create a variable)
RHS - First.replace(“?”,“”)
Message box - Second
Try this let me know if you face any issue and also if possible share the screenshot
Regards
Gokul
on uipath it doesn’t have ‘?’
but if i use this to move data to mssql datatable
suddenly come out ‘?’ ilke this
You can use Query to remove the “?” from the Data Table @YIA
Regards
Gokul
i think u mean like this but it wasn’t work
maybe it’s not correct query cuz i’m not good at sql query
if any other way or query
plz advice me
thx to spend ur time to me
Have a view on this
SELECT REPLACE (MyURLString, ‘GREATERTHAN’, ‘>’) as MyURLString From MyTable
Regards
Gokul
thx all time
finally solved it
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.