Guest Posted August 20, 2012 Posted August 20, 2012 How can I delete only the following letters:< > = ^ % $ # ; , : & / \ " in StringRegExpReplace ?
iamtheky Posted August 20, 2012 Posted August 20, 2012 $test = 'TE<>=^%$#;,:&/"ST' $teststripped = stringregexpreplace($test , '<|>|=|^|%|$|#|;|,|:|&|/|"' , "") msgbox (0, '' , $teststripped) ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
Moderators Melba23 Posted August 20, 2012 Moderators Posted August 20, 2012 gil900,Like this: $sString = '<0>1=2^3%4$5#6;7,8:9&0/12"' $sNew_Text = StringRegExpReplace($sString, '[<>=^%$#;,:&/"]', "") ConsoleWrite($sNew_Text & @CRLF)Simple SREs like that one are within the reach of anyone. I recommend www.regular-expressions.info/tutorial.html to start learning more about them. M23P.S. I see the forum software is not allowing urls again. Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Guest Posted August 20, 2012 Posted August 20, 2012 Thank you both.But in some cases it does not delete the - " i test it on over 400 lines in html file
iamtheky Posted August 20, 2012 Posted August 20, 2012 (edited) in those cases are they back to back single quotes? $test = 'TE<>=^%$#;,:&/"' & "''ST" msgbox (0, '' , $test) $teststripped = stringregexpreplace($test , "'|" & '<|>|=|^|%|$|#|;|,|:|&|/|"', "") msgbox (0, '' , $teststripped) Edited August 20, 2012 by boththose ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
AZJIO Posted August 21, 2012 Posted August 21, 2012 $test=StringRegExpReplace($test, '[<>=^%$#;,:&/"]', '') My other projects or all
GEOSoft Posted August 21, 2012 Posted August 21, 2012 change the " to x22.Also you may find that you have to add a * to the end if the expressionUsing AZJIOs example$test=StringRegExpReplace($test, "[<>=^%$#;,:&/x22]*", '') George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
jdelaney Posted August 21, 2012 Posted August 21, 2012 (edited) This will probably grab too much, but simplified: $test = 'TE<>=^%$#;,:&/"' & "''ST" & @crlf & "testing123135" $teststripped = stringregexpreplace($test , "[^ws]", "") ConsoleWrite ( $teststripped & @CRLF ) Edited August 21, 2012 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now