TrashBoat Posted May 6, 2018 Posted May 6, 2018 hey i would like to know if its possible to take a string like this $string = "onethousandninehundredeightyfive" and convert it into: $string = "one thousand nine hundred eighty five" i have something going on here but its no use $string = "onethousandninehundredeightyfive" Global $array[9] = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine'] Global $array1[19] = ['onethousand', 'twothousand', 'threethousand', 'fourthousand', 'fivethousand', 'sixthousand', 'seventhousand', 'eightthousand', 'ninethousand','tenthousand','hundred', 'twohundred', 'threehundred', 'fourhundred', 'fivehundred', 'sixhundred', 'sevenhundred', 'eighthundred', 'ninehundred'] MsgBox(0, 0, AddSpaces($string)) Func AddSpaces($string) Local $finalStr $length = StringLen($string) For $x = 0 To $length Local $trim = StringTrimRight($string, $x) For $h = 0 To 18 If $trim = $array1[$h] Then $finalStr = $finalStr & " " & $trim $string = StringTrimLeft($string, $h) $length = StringLen($string) EndIf Next For $z = 0 To 8 If $trim = $array[$z] Then $finalStr = $finalStr & " " & $trim $string = StringTrimLeft($string, $z) $length = StringLen($string) EndIf Next Next Return $finalStr EndFunc ;==>AddSpaces
TheXman Posted May 6, 2018 Posted May 6, 2018 (edited) Here's one way that it could be done: example() Func example() Const $kData = "onethousandninehundredeightyfivefiftysixninetyfour" Local $s = $kData $s = StringRegExpReplace($s, "(?i)(zero|one|two|three|four(?!ty)|five|six(?!ty)|seven(?!y)|eight(?!y)|nine(?!ty))", "\1 ") $s = StringRegExpReplace($s, "(?i)(twenty|thirty|fourty|fifty|sixty|seventy|eighty|ninety)", "\1 ") $s = StringRegExpReplace($s, "(?i)(hundred|thousand)", "\1 ") ConsoleWrite($s & @CRLF) EndFunc Edited May 6, 2018 by TheXman dmob 1 CryptoNG UDF: Cryptography API: Next Gen jq UDF: Powerful and Flexible JSON Processor | jqPlayground: An Interactive JSON Processor Xml2Json UDF: Transform XML to JSON | HttpApi UDF: HTTP Server API | Roku Remote: Example Script About Me How To Ask Good Questions On Technical And Scientific Forums (Detailed) | How to Ask Good Technical Questions (Brief) "Any fool can know. The point is to understand." -Albert Einstein "If you think you're a big fish, it's probably because you only swim in small ponds." ~TheXman
TrashBoat Posted May 6, 2018 Author Posted May 6, 2018 ughh.. what are those (?i) i want to know i understand the (?!y) and (?!ty) , and thanks it works perfectly!
TheXman Posted May 6, 2018 Posted May 6, 2018 17 minutes ago, TrashBoat said: ughh.. what are those (?i) i want to know i understand the (?!y) and (?!ty) , and thanks it works perfectly! https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm (?i) = Caseless: matching becomes case-insensitive from that point on. CryptoNG UDF: Cryptography API: Next Gen jq UDF: Powerful and Flexible JSON Processor | jqPlayground: An Interactive JSON Processor Xml2Json UDF: Transform XML to JSON | HttpApi UDF: HTTP Server API | Roku Remote: Example Script About Me How To Ask Good Questions On Technical And Scientific Forums (Detailed) | How to Ask Good Technical Questions (Brief) "Any fool can know. The point is to understand." -Albert Einstein "If you think you're a big fish, it's probably because you only swim in small ponds." ~TheXman
Moderators Melba23 Posted May 6, 2018 Moderators Posted May 6, 2018 TheXman, I would add the space before the detected string, not after - think of "nine" and "nineteen". M23 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
TheXman Posted May 6, 2018 Posted May 6, 2018 5 minutes ago, Melba23 said: I would add the space before the detected string, not after - think of "nine" and "nineteen". @Melba23 Point taken. My suggestion doesn't cover a myriad of additional possibilities or requirements. But to your point, yes, there are several ways that it could have been accomplished. Since "teens" weren't a part of the request, I didn't take them into account. My solution was meant only to be as accurate as the request itself. I try not to make any assumptions. However, I did add "thousand" to the example just to point out that it was easy to expand upon the solution, if necessary. CryptoNG UDF: Cryptography API: Next Gen jq UDF: Powerful and Flexible JSON Processor | jqPlayground: An Interactive JSON Processor Xml2Json UDF: Transform XML to JSON | HttpApi UDF: HTTP Server API | Roku Remote: Example Script About Me How To Ask Good Questions On Technical And Scientific Forums (Detailed) | How to Ask Good Technical Questions (Brief) "Any fool can know. The point is to understand." -Albert Einstein "If you think you're a big fish, it's probably because you only swim in small ponds." ~TheXman
TrashBoat Posted May 6, 2018 Author Posted May 6, 2018 yeah ive added them myself no need $s = StringRegExpReplace($s, "(?i)(ten|eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen)", "\1 ")
mikell Posted May 6, 2018 Posted May 6, 2018 24 minutes ago, Melba23 said: I would add the space before the detected string, not after - think of "nine" and "nineteen". As the regex engine reads the pattern left to right it could be done like this $string = "nineteenthousandninehundredninetynine" Local $pattern $pattern &= "(?i)(" $pattern &= "hundred|thousand|twenty|ten|eleven|twelve|" $pattern &= "thirty|fourty|fifty|sixty|seventy|eighty|ninety|" $pattern &= "thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen|" $pattern &= "zero|one|two|three|four|five|six|seven|eight|nine" $pattern &= ")" $s = StringRegExpReplace($string, $pattern, "$1 ") Msgbox(0,"", $s) mLipok, iamtheky and TheXman 3
TheXman Posted May 6, 2018 Posted May 6, 2018 (edited) 1 hour ago, Melba23 said: I would add the space before the detected string, not after - think of "nine" and "nineteen". Slightly modified version that uses @Melba23's suggestion: #include <Constants.au3> example() Func example() Const $kData = "onethousandninehundredeightyfivefiftysixninetyfour" Const $kData2 = "nineteenthousandninehundredeightyfivefiftysixninetyfourfourteententhousand" Local $s = $kData2 $s = StringRegExpReplace($s, "(?i)(?<! )(zero|one|two|three|four|five|six|seven|eight|nine|ten)", " \1") $s = StringRegExpReplace($s, "(?i)(?<! )(eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen)", " \1") $s = StringRegExpReplace($s, "(?i)(?<! )(twenty|thirty|fourty|fifty|sixty|seventy|eighty|ninety)", " \1") $s = StringRegExpReplace($s, "(?i)(?<! )(hundred|thousand|million|billion)", " \1") $s = StringStripWS($s, $STR_STRIPLEADING) ConsoleWrite($s & @CRLF) EndFunc (?<! ) = Only do the replacement if there isn't already a leading space. Edited May 6, 2018 by TheXman CryptoNG UDF: Cryptography API: Next Gen jq UDF: Powerful and Flexible JSON Processor | jqPlayground: An Interactive JSON Processor Xml2Json UDF: Transform XML to JSON | HttpApi UDF: HTTP Server API | Roku Remote: Example Script About Me How To Ask Good Questions On Technical And Scientific Forums (Detailed) | How to Ask Good Technical Questions (Brief) "Any fool can know. The point is to understand." -Albert Einstein "If you think you're a big fish, it's probably because you only swim in small ponds." ~TheXman
iamtheky Posted May 6, 2018 Posted May 6, 2018 (edited) yours still struggles where there is a match inside of your match e.g. the following string returns "twomilli oneight thousand four hundred fifty three" in your script, but splits correctly with @mikell's (after adding million to the lead the pattern) $string = "twomillioneightthousandfourhundredfiftythree" Local $pattern $pattern &= "(?i)(" $pattern &= "million|hundred|thousand|twenty|ten|eleven|twelve|" $pattern &= "thirty|fourty|fifty|sixty|seventy|eighty|ninety|" $pattern &= "thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen|" $pattern &= "zero|one|two|three|four|five|six|seven|eight|nine" $pattern &= ")" $s = StringRegExpReplace($string, $pattern, "$1 ") Msgbox(0,"", $s) Edited May 6, 2018 by iamtheky ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
TheXman Posted May 6, 2018 Posted May 6, 2018 4 minutes ago, iamtheky said: yours still struggles where there is a match inside of your match Nice catch! CryptoNG UDF: Cryptography API: Next Gen jq UDF: Powerful and Flexible JSON Processor | jqPlayground: An Interactive JSON Processor Xml2Json UDF: Transform XML to JSON | HttpApi UDF: HTTP Server API | Roku Remote: Example Script About Me How To Ask Good Questions On Technical And Scientific Forums (Detailed) | How to Ask Good Technical Questions (Brief) "Any fool can know. The point is to understand." -Albert Einstein "If you think you're a big fish, it's probably because you only swim in small ponds." ~TheXman
mikell Posted May 6, 2018 Posted May 6, 2018 Complication is not necessary As I said before, the regex engine reads the pattern left to right, and after a match/replacement it doesn't go backwards Simple example : $string = "abcdefghi" $pattern = "(\w{2}|\w)" $s = StringRegExpReplace($string, $pattern, "$1.") Msgbox(0,"", $s)
jchd Posted May 7, 2018 Posted May 7, 2018 I believe to have answered the OP question in the other thread devoted to conversion "text to number". 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 hereRegExp tutorial: enough to get startedPCRE 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)
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