Jump to content

Need regex help to remove ASCII 8206 and 8207 from string


sshrum
 Share

Recommended Posts

I'm writing a script to rename JPG files based on their EXIF data. I've discovered that Samsung has added additional ASCII chars into the string and I (never having to deal with these types of chars in the past) need to get some advise on how to deal with these.

The original thread that discovered these hidden ASCII chars is here:

The timestamp I get is '6/17/2011 6:12 PM' that I run thru a StringSplit with "/ :" however, I can't run evaulations on the strings since the non-printing ASCII codes are throwing the results off. This is what I discovered when I converted the string data to ASCII:

String, Stringlen: 2, Data: >?6<

- 8206

- 54

String, Stringlen: 3, Data: >?17<

- 8206

- 49

- 55

String, Stringlen: 5, Data: >?2011<

- 8206

- 50

- 48

- 49

- 49

String, Stringlen: 3, Data: >??6<

- 8207

- 8206

- 54

String, Stringlen: 2, Data: >12<

- 49

- 50

String, Stringlen: 2, Data: >PM<

- 80

- 77

Is there a way I can one-line a regex expression on the string (pre-stringsplit) to strip out the 8206 and 8207s painlessly?

TIA

Sean Shrum :: http://www.shrum.net

All my published AU3-based apps and utilities

'Make it idiot-proof, and someone will make a better idiot'

 

Link to comment
Share on other sites

  • Moderators

sshrum,

This might be too simple a solution, but I do not see why it should not work in removing unwanted characters. :oops:

This SRER removes everything in the string other than digits, forward slashes, spaces, colons, and the letters "APM" (in upper and lower case). So you should get the basic string you want to StringSplit: :rip:

$sStringStripped = StringRegExpReplace($sString, "(?i)[^d/x20:APM]", "")

Any luck? :D

M23

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:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Filter those pesky Unicode non-chars out on your input string:

Local $fixed = StringRegexpReplace($inp, "[^d/ :APM]", "")

Arg, eagles type faster!

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

  • Moderators

jchd,

Bonjour, mon brave! :D

M23

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:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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