Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Karine
Contributor II
Contributor II

Extraire un texte en minuscule

Bonjour,

Dans mon champs, je peux avoir du texte en majuscule ou en minuscule (BG ou bg )
Je souhaite garder que le texte en minuscule. Pouvez-vous m'aider svp ? 

En vous remerciant.
Karine

1 Solution

Accepted Solutions
steeefan
Luminary
Luminary

Try this:

LOAD
  //..
  champ
RESIDENT
  Table
WHERE
  champ = lower(champ);

This will return only the rows where values of champ are completely in lower case.

View solution in original post

2 Replies
steeefan
Luminary
Luminary

Try this:

LOAD
  //..
  champ
RESIDENT
  Table
WHERE
  champ = lower(champ);

This will return only the rows where values of champ are completely in lower case.

Karine
Contributor II
Contributor II
Author

Super merci !