GodlessSinner 2 Posted June 19, 2010 How to check is string contains a " double quotes ? _____________________________________________________________________________ Share this post Link to post Share on other sites
KaFu 295 Posted June 19, 2010 $string1 = "test" $string2 = "test""test" MsgBox(0,"",$string1 & @crlf & StringInStr($string1,"""") & @crlf & $string2 & @crlf & StringInStr($string2,"""") & @crlf) OS: Win10-1909 - 64bit - German, AutoIt Version: 3.3.14.5, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2019-Dec-21) BIC - Batch-Image-Cropper (2019-Dec-11) COP - Color Picker (2009-May-21) HMW - Hide my Windows (2018-Sep-16) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2019-Dec-07) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16) Share this post Link to post Share on other sites
ajag 10 Posted June 19, 2010 $pos = StringInStr('String with " double quotes','"') MsgBox(4096,"Bingo", "Found double quotes at position " & $pos) A-Jay @KaFu: Isn't your signature a bit monstrous? (makes reading the threads heavy for me ) Rule #1: Always do a backup Rule #2: Always do a backup (backup of rule #1) Share this post Link to post Share on other sites
KaFu 295 Posted June 19, 2010 @KaFu: Isn't your signature a bit monstrous? (makes reading the threads heavy for me )The list of interesting posts just grew too much over time , relocated most of the links to my "About me" page, sig's much smaller now . OS: Win10-1909 - 64bit - German, AutoIt Version: 3.3.14.5, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2019-Dec-21) BIC - Batch-Image-Cropper (2019-Dec-11) COP - Color Picker (2009-May-21) HMW - Hide my Windows (2018-Sep-16) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2019-Dec-07) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16) Share this post Link to post Share on other sites