# u7193 user exit

The u7193 user exit converts the American
date format (mm/dd/yy) to international format (dd/mm/yy).

## Syntax

```
results = oconv(str.exp, ’u7193’)
```

## Description

Month, day and year must all
be 2-digit numbers.

## Example(s)

```
date = "11/06/01"
intl.date = oconv(date,’u7193’)
```
At the end of this operation, `intl.date` contains `"06/11/01"`.

## See also

- [d (date) processing code](https://d3codex.com/processingcodes/d-date-processing-code/)
- [PROC processor user exits](https://d3codex.com/proc/proc-processor-user-exits/)
- [u1193 user exit](https://d3codex.com/proc/u1193-user-exit/)

---
Source: https://d3codex.com/pickbasic-flashbasic/u7193-user-exit/ - part of the D3Codex reference.
