hi all,
i have seen it been done using REGEX but i would like to know how to do it without as mine doesn’t appear to be working
Thank you
hi all,
i have seen it been done using REGEX but i would like to know how to do it without as mine doesn’t appear to be working
Thank you
Can you be a little more specific, how is your string and what to you want to remove from them?
REGEX would be helpful here. But if you don’t want to use it then use Replace method to replace special characters.
my string should be RQ8000767352 but when i scrape its not accurate and reading invisible text like [RQ8000767352)
is there a reason why when i start typing regex that is doesn’t show up in the suggestions?
that would be “[RQ8000767352)”.Replace(“[”,“”).Replace(“)”,“”)
yes but the ocr is quite unstable so for the next record is might read it as $RQ86664527^
are you saying you want to always clean first and last? what do you know about that string? does it have always the same size and should always start with R?
System.Text.RegularExpressions.Regex.Replace(variable, “[^a-z A-Z]”, “”)
?
how do i include numbers 0-9 as the characters i want?
System.Text.RegularExpressions.Regex.Replace(variable, “[^a-z A-Z 0-9]”, “”)
and you pray that ocr will never give you a letter or a number in the wrong place
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.