Jump to content

Recommended Posts

Posted

I am using CVSLib.au3 and taht is a GREAT! Include for Autoit. It has so many great functions. But there is one problem I am facing. With excel it adds quotation marks as escape characters for example: "Spanish, Chris"

I am trying to automate filling and I need the name only. So How do I remove the quotation marks around this name?

The problem is: it is not always the case that I have to remove the quotation marks.

How do I make a check to See if there are quotation marks and remove them if their are?

Posted (edited)

Something like this. When the first character is a quotation I assume that the tring is quoted.

$sName = '"Spanish, Chris"'
ConsoleWrite("Before: " & $sName & @CRLF)
If Stringleft($sName,1) = '"' Then $sName = StringMid($sName,2,Stringlen($sName)-2)
ConsoleWrite("After: " & $sName & @CRLF)

It could be done with regular expressions using function StringRegExprReplace as well but I'm not familiar with SRE.

Edited by water

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Assuming there's no whitespace before/after, you can use this (or add in \s* where necessary):

$sStr='"Spanish, Chris"'
$sStr=StringRegExpReplace($sStr,'(^"|"$)','')

My contributions:

  Reveal hidden contents

Performance Counters in Windows - Measure CPU, Disk, Network etc Performance | Network Interface Info, Statistics, and Traffic | CPU Multi-Processor Usage w/o Performance Counters | Disk and Device Read/Write Statistics | Atom Table Functions | Process, Thread, & DLL Functions UDFsProcess CPU Usage Trackers | PE File Overlay Extraction | A3X Script Extract | File + Process Imports/Exports Information | Windows Desktop Dimmer Shade | Spotlight + Focus GUI - Highlight and Dim for Eyestrain Relief | CrossHairs (FullScreen)Rubber-Band Boxes using GUI's (_GUIBox) | GUI Fun! | IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) | Magnifier (Vista+) Functions UDF | _DLLStructDisplay (Debug!) | _EnumChildWindows (controls etc) | _FileFindEx | _ClipGetHTML | _ClipPutHTML + ClipPutHyperlink | _FileGetShortcutEx | _FilePropertiesDialog | I/O Port Functions | File(s) Drag & Drop | _RunWithReducedPrivileges | _ShellExecuteWithReducedPrivileges | _WinAPI_GetSystemInfo | dotNETGetVersions | Drive(s) Power Status | _WinGetDesktopHandle | _StringParseParameters | Screensaver, Sleep, Desktop Lock Disable | Full-Screen Crash Recovery

Wrappers/Modifications of others' contributions:

_DOSWildcardsToPCRegEx (original code: RobSaunder's) | WinGetAltTabWinList (original: Authenticity)

UDF's added support/programming to:

_ExplorerWinGetSelectedItems | MIDIEx UDF (original code: eynstyne)

(All personal code/wrappers centrally located at Ascend4nt's AutoIT Code)

  • 1 year later...
Posted (edited)
  On 6/6/2011 at 7:11 PM, 'Ascend4nt said:

Assuming there's no whitespace before/after, you can use this (or add in s* where necessary):

$sStr='"Spanish, Chris"'
$sStr=StringRegExpReplace($sStr,'(^"|"$)','')
Expand  
$sStr=StringRegExpReplace($sStr,'^[ ]*"|"[ ]*$','')

This will get the whitespace you're talking about. Also, no point in wasting cycles on capturing if you're not doing anything with it.

Cheers!

Note: I realize this post is old, but I wanted to post an alternative regex solution to the one provided.

Edited by VertigoRay

Figure IT out!http://vertigion.com

Posted

  On 2/25/2013 at 2:57 AM, 'VertigoRay said:

$sStr=StringRegExpReplace($sStr,'^[ ]*"|"[ ]*$','')

This will get the whitespace you're talking about. Also, no point in wasting cycles on capturing if you're not doing anything with it.

Cheers!

I think he already solved his problem ;)

Hi!

My UDF: NetInfo UDF Play with your network, check your download/upload speed and much more! YTAPI Easy to use YouTube API, now you can easy retrive all needed info from a video. NavInfo Check if a specific browser is installed and retrive other usefull information. YWeather Easy to use Yahoo Weather API, now you can easily retrive details about the weather in a specific region. No-IP UDF Easily update your no-ip hostname(s).

My Script: Wallpaper Changer Change you wallpaper dinamically, you can also download your wallpaper from your website and share it with all!   My Snippet: _ImageSaveToBMPConvert an image to bmp format. _SciteGOTO Open a file in SciTE at specific fileline. _FileToHex Show the hex code of a specified file

  • 11 years later...

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