Jump to content

Recommended Posts

  • 5 years later...
Posted (edited)

what if my int looks like "10,123"? how to get same looks string?

$str = "10,123"
Int($str) ; return "10" instead of "10,123"
Edited by maniootek
  • Moderators
Posted

1.  I commend you in searching for an answer before you posted.

2.  However, please be mindful of the date of threads you post in, this thread was 5 years old and is considered necroposting.

10 comma 123 isn't a number is it?  It's a "formatted" number" "string".

$str = "10,123.56"
ConsoleWrite(_IntFromString($str) & @CRLF)

Func _IntFromString($s_str)
    ; strip non digit from string
    Return Int(StringRegExpReplace($s_str, "[^\d\.]", ""))
EndFunc

Try that.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

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