Jump to content

Recommended Posts

Posted

How can I delete only the following letters:

< > = ^ % $ # ; , : & / \ "

in StringRegExpReplace ?

Posted

$test = 'TE<>=^%$#;,:&/"ST'

$teststripped = stringregexpreplace($test , '<|>|=|^|%|$|#|;|,|:|&|/|"' , "")

msgbox (0, '' , $teststripped)

  Reveal hidden contents

  • Moderators
Posted

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. :)

M23

P.S. I see the forum software is not allowing urls again. :(

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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:

  Reveal hidden contents

 

Posted

Thank you both.

But in some cases it does not delete the - "

i test it on over 400 lines in html file

Posted (edited)

in those cases are they back to back single quotes?

$test = 'TE<>=^%$#;,:&/"' & "''ST"

msgbox (0, '' , $test)

$teststripped = stringregexpreplace($test , "'|" & '<|>|=|^|%|$|#|;|,|:|&|/|"', "")

msgbox (0, '' , $teststripped)
Edited by boththose

  Reveal hidden contents

Posted

change the " to x22.

Also you may find that you have to add a * to the end if the expression

Using AZJIOs example

$test=StringRegExpReplace($test, "[<>=^%$#;,:&/x22]*", '')

George

  Reveal hidden contents
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!"

Posted (edited)

This will probably grab too much, but simplified:

$test = 'TE<>=^%$#;,:&/"' & "''ST" & @crlf & "testing123135"
$teststripped = stringregexpreplace($test , "[^ws]", "")
ConsoleWrite ( $teststripped & @CRLF )
Edited 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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...